Click to See Complete Forum and Search --> : DHTML tabs


talent_999
11-13-2003, 02:36 PM
I have tabs on my web site like: http://www.htmlgoodies.com/beyond/dhtml5.html

Is the anyway in which I can make the cursor go like a little hand (like you normally get on link) when it goes over the tabs?

If so where do I put the code?

AdamGundry
11-13-2003, 02:58 PM
Using that script is a bad idea - it makes your pages inaccessible to users with Javascript disabled (~13%) or with a different browser (like me, with Moz 1.4). Anyway, you can use this CSS:

cursor: pointer;

(for more info, see the CSS specification: http://www.w3.org/TR/CSS2/ui.html#propdef-cursor)

Adam