Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For the life of me I cannot figure this out. The jQueryUI tooltip feature (relatively new) works perfectly on absolutely everything, in every browser. Except select boxes in IE! It seems for some reasons that IE is reading every "option" element as a very relevant part of the "select". Thus, while the tooltip works perfect even in IE when you merely hover over a select box, it breaks as soon as you click it.

I am using jQuery version 1.5 beta1 (though I have tested this in every version from 1.4 onward), and jQueryUI version 1.8.8.

Edit: An example of this may be seen at this location.

share|improve this question

2 Answers

up vote 1 down vote accepted

You can always detect the user agent header and display "Sorry, this site requires using a browser." when someone comes in with IE. :)

share|improve this answer
Hah! Yes I have done this in some personal websites (redirect them to download Chrome, etc) but unfortunately this is for a production environment for a client. I never did solve the issue by the way, I just resorted to making my own tooltips, and hoping jQueryUI improves theirs in the future. – Rαωs Feb 10 '11 at 4:34

Here is a link to the bug: http://bugs.jqueryui.com/ticket/8798

The solution they suggest is just wrap the text in another element, for example a div, that will trigger the tooltip.

<div class="tooltip" title="Some text">
    <select>
       <option>...</option>
    </select>
</div>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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