views:

27

answers:

1

Hi,

I am using the jQuery Drop Down Check List component:

http://github.com/scottwb/jquery.ui.dropdownchecklist

However, it doesn't seem that there is support to add a tooltip to such a drop down. Usually, you just add the 'title' tag for every option and a tooltip is automatically shown. However, this is not the case with this component.

Does anybody know how can I implement this?

This is the code I usually use for drop down items tooltips:

<select id="MySelect">
    <option title="ToolTip1">Item 1</option>
    <option title="ToolTip2">Item 2</option>
</select>

Please let me know.

Thanks in advance.

A: 

Nevermind, I dropped this. I used a workaround.

Chris