lang="en-US"> JQuery FIX: uncaught exception: Syntax error, unrecognized expression: # –  Design1online.com, LLC

JQuery FIX: uncaught exception: Syntax error, unrecognized expression: #

This one threw me for a bit of a loop today so I thought I’d share. I couldn’t get my debugger to give me a line number for this error, however it turns out I had a double # sign in my jQuery code.

<script>
$("##myButton").click(function () { alert('You are pressing my buttons'); });
</script>

Notice the duplicate pound sign (#) in the ID reference for the button. Remove the duplicate pound sign and you should be good to go.

You may also like...

Leave a Reply