jQuery eventsjQuery basically have following type of events:
.ready()
Indicates that DOM is fully loaded that mean all controls and it's hierarchy is fully loaded .This is the best place to do all event handling and jacascript/jQuery code manipulations.
Below example shows how to use .ready() in jQuery:
$(document).ready(function()
{
// Handler...
jQuery basics
By
Avinash

Basics of jQueryIn this post we will see very basic of jQuery.How to start with jQuery?jQuery, is a Javascript library with cross-browser support and open source which simplify the client side scripting in web/html.
It supports
DOM,
CSS manipulation,
Ajax,
animations and effect
extendible plugins.
Get Started using jQuery:
jQuery needs...