Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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");
});
share|improve this question
Have you done some tests? Where is your code? What you wrote is wrong. – Roko C. Buljan Aug 25 '12 at 6:32
1  
Here is the code $("ul#list_results li").mouseover(function() { alert.log("hh"); }); – Daniel Deepak Aug 25 '12 at 6:35
@Roko In the last comment, it is console.log and not alert.log, I pasted content wrongly. – Daniel Deepak Aug 25 '12 at 6:38
Yes, everything works fine the Chrome Console window. If I, hit $, this returns the value, indicating jQuery is enabled on the page. – Daniel Deepak Aug 25 '12 at 6:42
@Roko I'm actually able to choose the code$("ul#list_results li")code in the console window, but the mouseenter, hover and mouseover events doesn't seem to work. – Daniel Deepak Aug 25 '12 at 6:43
show 3 more comments

closed as not a real question by Roko C. Buljan, KingCrunch, Ben, Lix, Nathan Koop Aug 27 '12 at 2:27

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

If your li elements are created dynamically use the .on() method like:

$("ul#list_results").on('mouseenter','li',function(){
   console.log("hh");
});

http://api.jquery.com/on

your elements does not exist yet while the jQuery is processed, so you need to delegate an event listener (eg: mouseenter) to newly created elements with .on()

share|improve this answer
1  
Man, You are awesome! A ton of thanks! @Roko – Daniel Deepak Aug 25 '12 at 7:02

Not the answer you're looking for? Browse other questions tagged or ask your own question.