Hi guys,
I'm trying to hover a listed element in IE6 but of course it doesn't seem to support itI've got this code that I thought would work, but err, it doesn't:
Any idea what I'm doing wrong please? Many thanksCode:window.onload = function() { var ul = document.getElementById('nav'); ul.onmouseenter = ul.onmouseleave = function() { this.className = (event.type == 'mouseenter') ? 'hover' : ''; }; }; try { document.execCommand('BackgroundColor', false, true); } catch(e) {}



I've got this code that I thought would work, but err, it doesn't:





Bookmarks