IE 6.. how i despise thee..
Wednesday, January 6th, 2010Time for the semi-annual “Get caught by an IE6 bug/feature” exercise.
Placing “javascript:void(0)” in the href portion of the a tag just doesn’t work for Internet explorer version 6.. A common scripting technique that works fine in almost every other browser looks like the following
<a href=”javascript:void(0)” onclick=”myFunction()”>some link</a>
Internet Explorer 6 doesnt support this.. instead try this.
<a href="#" onclick="myFunction();return false;">some link</a>