2008/3/25, Jörn Zaefferer <[EMAIL PROTECTED]>:
>
>
> Mileto schrieb:
>
> > Hi,
> >
> > I am with a simple problem using plugin tooltip. I apply the tooltip
> > in selectbox. If mouse step in selectbox still closed it works
> > perfectly, but when I click on the mouse selectbox and step through
> > options, the property TOP of the DIV tag decreases so that the tooltip
> > is out of the select.
> >
>
> Could you post a testpage?
>
>
> Jörn
>

Hello Jörn,

I think that I'm not clear and unfortunately I can't post the page, but my
problem is like to this:

When you hover a tooltip in a select, it should disappear when you are
selecting a option.
In this case, the tooltip are putting the box of tip completely in
wrong place. And worse: when you are hovering the option the tooltip
keeps behind them, whats its strange user experience.

I try to solve this problem with this code
$("select").click(function(){
       $.Tooltip.blocked ? $.Tooltip.blocked = false :
$.Tooltip.blocked =
true;
       $("#tooltip:hidden").length ? $("#tooltip").show() : $
("#tooltip").hide();

});

$("select").blur(function(){
       $.Tooltip.blocked = false;

});

It works in firefox, blocking the tooltip when you click in a select
and when you exit the tooltip back to act

But didnt works in safari and IE.

Anyone know a way to handler the tooltip properly with select when you
are choosing a option?

Reply via email to