[jQuery] Re: show/hide problem

2009-10-25 Thread Jules
If a.more is a child of the div, use this code. $(document).ready(function() { $("div.featured-cell-padding").mouseenter(function(){ $(this).find("a.more").show(); }); $("div.featured-cell-padding").mouseleave(function(){ $(this).find("a

[jQuery] Re: show/hide problem

2009-10-24 Thread stilfx
We need more info, the structure of the page, etc. You can target selectors in many ways. On Oct 24, 10:13 am, Daniel Donaldson wrote: > I am trying to have a image (link button) appear within a div on > mousenter for the div, and disappear on mouseleave. > I have this working in the following