-
how do i disable the property title="....."?
i have made a button onmouseover displays a <div> containing some help text.
i want to make this as compatible as possible, so if the user does not have javascript, i want the tooltip to show (by means of title="help text...")
but if he has javascript on, the help <div> and the tooltip will show, so using javascript, how can i disable the
title="help text..."?
thanks.
-
Hmmmmm....... What about
title=""
?
(nothing between the apostrophes)
(I assume you've tried leaving the 'title=""' out)
-
uhhhhh.........
thanks, but i don't think you understood the question...
What I'm trying to say is that i have an image, onMouseOver displays a little javascript layer with some help text. But i also have included a title property with the same help text for the people without javascript.
However, this way, the users with javascript would thus see the javascript layer AND the tooltip (by the title property)
so how do i disable the title property using Javascipt?
-
Ouch! I don't think you're able to disable the title property through JScript...