Closed zoltan-fedor closed 11 years ago
You can get around this by doing :
// remplace '#multiselect' with your actual multiselect element selector
$("#multiselect").next().on("mouseover", ".option-element", function(evt) {
/* evt.currentTarget is the DIV element for the list option */
});
If you want more control over the rendering of each element, take a look at optionRenderer
(See the wiki).
Thanks, that has worked! (actually used mouseenter and not mouseover, but otherwise about the same)
Hi, It would be nice to have the ability to add hover over text to the selected and available items in the list. In case if long text would make it too heavy, then the ability to load the hover over text via ajax might be desired. Thanks