I'm not a JS guru, but could someone help me find the invalid quantifier error in the following snippet?
THANKS IN ADVANCE! -mprototype
function $_GET(q,s) {
s = s ? s : window.location.search;
var re = new RegExp( '&' + q + '(?:=([^&]*))?(?=&|$)' , 'i' );
return (s=s.replace(/^?/,'&').match(re)) ? (typeof s[1] == 'undefined' ? '' : decodeURIComponent(s[1])) : undefined;
}
/^?/? It gives me SyntaxError: Invalid regular expression: /^?/: Nothing to repeat. And maybe you can also explain what the function is supposed to do. – Felix Kling Apr 12 '11 at 16:46