I have a search bar and I want to list results as user types the query. The list results Div is a dynamically created Div. So, I couldn't use the mouseenter and mouseover and even the hover events on the div's contents.
$("ul#list_results li").mouseover(function(){
console.log("hh");
});
code$("ul#list_results li")codein the console window, but the mouseenter, hover and mouseover events doesn't seem to work. – Daniel Deepak Aug 25 '12 at 6:43