SyntaxFix
Write A Post
Hire A Developer
Questions
You can try this:
$(".myclass").mouseover(function() { $(this).find(" > div").css("background-color","red"); }).mouseout(function() { $(this).find(" > div").css("background-color","transparent"); });
DEMO