JQuery Events

Action Effect
click( function) Execute function when element is clicked
mouseover(function) Execute function when mouse enters element
mouseout(function) Execute function when mouse exits element
hover(mouseoverFunction,mouseoutFunction) Combination of mouseover/out
ready(function) $(document).ready executes functionwhen the DOM is fully loaded

Leave a Reply