Skip to content

Instantly share code, notes, and snippets.

@veapon
Created June 21, 2013 10:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veapon/5830222 to your computer and use it in GitHub Desktop.
Save veapon/5830222 to your computer and use it in GitHub Desktop.
Exclude the children in a DOM event.
$('#tree').mouseover(function(e){
if(e.target==this) $(this).css('background','#FFC');
// or
if( $(this).is( $('#tree') ) ) $(this).css('background','#FFC');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment