Skip to content

Instantly share code, notes, and snippets.

@humayunahmed8
Created October 21, 2022 12:35
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 humayunahmed8/26145f2998465a76033868a5de6c348f to your computer and use it in GitHub Desktop.
Save humayunahmed8/26145f2998465a76033868a5de6c348f to your computer and use it in GitHub Desktop.
JQuery Syntax
$(document).ready(function(){
// jQuery methods go here...
$("p").on({
mouseenter: function(){
$(this).css("background-color", "lightgray");
},
mouseleave: function(){
$(this).css("background-color", "lightblue");
},
click: function(){
$(this).css("background-color", "yellow");
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment