Jump to content

Please convert all the JavaScript links to <span> tags


dorkiaa

Recommended Posts

<a> tags should not be used with JavaScript scripts, even if it's possible.

For instance, this code:

<a href="javascript:utWebUI.Start();" title="Start"><div id="start"></div></a>

Should be converted to this code:

<span onclick="utWebUI.Start();" title="Start"><div id="start"></div></span>

Oh, by the way, great work :D

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...