i got out of range error for using \ (bakcslash) for regExr Match.. ..solution please.....!!
if ($('.channelquickvalidte').val().match("^[a-zA-Z\s0-9, '@+&$,._!#%^*()_+=/<>\\]+$") == null) /* Error... */
{ alert("Character between A-Z/a-z and 0-9 are allowed. Additional you can use \"''@+&,._$!#%^*()_+=<>/\\\" character"); // its working fine
Error::
SyntaxError: invalid range in character class
(5525 out of range 177)
\sinside your character class if you also have ` ` in it? Try removing\sor move it to another position. I could imagine, that js interprets\s0in some weird way which yields the error.