vote up 0 vote down star

I've got a popup div showing on rightclick (I know this breaks expected functionality but Google Docs does it so why not?) However the element I'm showing my popup on has a "title" attribute set which appears over the top of my div. I still want the tooltip to work but not when the popup is there.

What's the best way to stop the tooltip showing while the popup is open/openning?

Edit: I am using jQuery

flag

2 Answers

vote up 2 vote down check

With jquery you could bind the hover function to also set the title attribute to blank onmouseover and then reset it on mouse out.

$("element#id").hover(
 function() {
  $(this).attr("title","");
  $("div#popout").show();
 },
 function() {
  $("div#popout").hide();
  $(this).attr("title",originalTitle);
 }
);
link|flag
nice! I am using jQuery so perfect (should have mentioned that) – Rob Stevenson-Leggett Nov 13 '08 at 17:35
vote up 0 vote down

I think setting to blank space and when the popup closes, setting again the proper text. I think this is the easiest way to stop it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.