On Thursday, 10 July 2014 at 01:04:35 UTC, Sönke Ludwig wrote:
Am 10.07.2014 02:58, schrieb Sönke Ludwig:
Am 10.07.2014 02:30, schrieb luminousone:
he links are clicked they simply don't do anything,
the load function is not called. And it doesn't seem to throw any
errors in chromes devel

I'll test with Chrome. But the spec is the same in that regard for HTML 4:
http://www.w3.org/TR/html4/intro/sgmltut.html#h-3.2.2

It even explicitly mentions escaping of " and '

All of these work for the latest Chrome (as well as for Opera, Firefox and IE11):

<html><body>
<a href="#" onClick="alert(&#39;Hello, World!&#39;)">Using &amp;#39;</a><br> <a href="#" onClick="alert(&quot;Hello, World!&quot;)">Using &amp;quot;</a><br>
<a href="#" onClick="alert('Hello, World!')">Using '</a><br>
<a href="#" onClick='alert("Hello, World!")'>Using "</a><br>
</body></html>

Relooked over my code, and found issue else where, When I saw the
html special characters seemed so out of place and figured that
was it.

Reply via email to