Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
This onclick was triggered only uppon a click on the link.
Your link should be non-working now, if you simply removed the onclick.
And be warned that the target= attribute is deprecated too in the xhtml strict doctype.
Your code will only validate on xhtml/transitional
Migrate the onclick into the href to have it valid and operational:
HTML Code:
<a href="javascript:openLiveHelp();" target="_blank" ><img src="http://www.mydomain.co.uk/livehelp/include/status.php" id="LiveHelpStatus" name="LiveHelpStatus" border="0" alt="Live Help" onload="statusImagesLiveHelp[statusImagesLiveHelp.length] = this;"/></a>
__________________
Only a biker knows why a dog sticks his head out the window.
Last edited by tripy; 06-05-2007 at 05:23 PM..
|