I created a Select list and applied jquery UI selectmenu plugin like:
<select id="test" title="This is not showing on mouse hover">
<option..>
</option>..
</select>
$("#test").selectmenu();
Now my problem is that the title which i gave to my select list is not showing on mousehover. Whats the problem ?
Apparently, the selectmenu widget does not expose the
titleattribute of the original element.This may be fixed by the time this widget becomes available in the main jQuery UI tree, but in the meantime you can implement this feature yourself. Try: