Basic Syntax
$().action()
Code Structure:
$(this).hide(); $('p').slideDown();
Document Ready Event
This event is used to prevent any Jquery code from running before the document is ready.
This event is used to prevent any Jquery code from running before the document is ready.
Code Structure:
$(document).ready(function( // Jquery method goes here... ));