I'm using JavaScript to sort a table on an HTML hyperlink:
This sort from Low-to-High:
<a id="asc" href="#" onclick="javascript:sort('asc');">Low</a>
It works great in Firefox/Chrome/Safari but does not work in IE6.
Live site at: http://tinyurl.com/ykzwb2
Click the Sort "High" or Sort "Low" link.
Any idea why it works in all browsers but IE6?
The root cause seems to be that IE6 is not changing the cursor arrow to a small-hand so that the hypertext is even clickable. Right now, when I hover over the links with IE6 - the Sort links are not even clickable
Also, my page passes w3 validation, so that's not the problem