1
2
3
4
5
6
7
$("#myList").delegate("li", "hover", function ( event ) {
if (event.type == 'mouseenter') {
showButtons();
} else {
hideButtons();
}
});
0%