I have a page that will have a series of tile sections, each of which will have one or more child divs.
I want when you go through the parent div, change its class and all divs to hover state.
I can easily make the parent div work, but can't get it: See Fiddle
$('.tile').hover( function () { $(this).addClass("hover"); $(this).find('.inner').addClass("hover"); }, function () { $(this).removeClass("hover"); $(this).find('.inner').removeClass("hover"); } )
All the examples that I see using "find" use the NAMED parent code; but I just need to use children of the current parent hovering over ($ this).
EDIT / UPDATE:
Part of my problem is that there is an image button inside the div. This button is supposed to have its OWN rollover. See Image from the designer below. I can get the first combination - all the blue and white buttons ... but with CSS I can't affect the PARENTS of the lus button, can I?

Steve source share