Skip to content

Instantly share code, notes, and snippets.

@moskowite
Created December 9, 2011 18:04
Show Gist options
  • Save moskowite/1452635 to your computer and use it in GitHub Desktop.
Save moskowite/1452635 to your computer and use it in GitHub Desktop.
// Bind the mouse enter and mouse leave events using
// the convenience method, hover().
$( "#outer-hover" ).hover(
function(){
console.log( "mouseEnter" );
},
function(){
console.log( "mouseLeave" );
}
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment