I have an asp.net web page.
Is there a possibility to just get 'real' single quotes client side?
Server side:
this.Attributes["onclick"] = "$('#button').click();";
Client side:
onclick="$('#button').click();"
gives an error.
Alert works just fine, i.e. Client side:
onclick="alert('hello#amp;39;);".
Seems like I need 'real' single quotes to work with jQuery.