what is wrong here:
$(\'#evclose\').click(function(){ console.log(\'323\'); }); // line 103
console:
Uncaug
Just a non-ascii-character \xe2 at the end of your function braces.
Open developer tool > console and paste your code. You will see a red dot over there which indicates an invalid character.
Just remove that invalid character (check image below).