I have following div tag where I have a need to change the mouse pointer to a "hand" when it loads. However, this works perfectly fine on IE, but does not work at all on FF.
“The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect.”
—Tim Berners-Lee, W3C Director and inventor of the World Wide Web
It's not about your suggestion, but accessibility problem of your coding.
If JavaScript is disabled your popup will not work. Using the code given by Charles or the link I gave will allow all users to access the link. http://www.webaim.org/techniques/javascript/
At least 98% of internet users' DNA is identical to that of chimpanzees
Hi again Fang, Cannot accessibility be simply provided via an HTML accesskey attribute, something like this...
HTML Code:
<a href="http://www.google.com" style="cursor:pointer" accesskey="g">Google</a><!--
For Windows...
IE8 beta2: Shift+Alt+g, then hit Return.
FF3.0: Shift+Alt+g.
Opera 9.62: Shift+Esc, then hit g.
Safari 3.1.1: Alt+g.
-->
You can make the page more accessible by getting rid of the accesskey attribute. It was realised soon after that attribute was introduced into HTML that it actually has the reverse effect to that for which it was intended and reduces rather than increases the accessibility of the page.
Bookmarks