jQuery

jQuery is an JavaScript Library.

jQuery Mostly minimized JavaScript Programming.

< script type="text/javascript" >
$(document).ready(function(){
$(".classname").click(function(){
})
$(this).hide();
})
< /script >

jQuery Selectors

jQuery selectors allow the user to select and manipulate all HTML Elements .

Selectors are mainly used to find by id,class,attribute,name or by types.

< script type="text/javascript" >
$(document).ready(function(){
$("button").click(function(){
})
$('#id').hide();
})
< /script >

jQuery Events

In jQuery Events represents the precise moment when an operation is been don .

Moving a Mouse over an Element strucure .

selecting an Radiobutton.

$("p").click(function(){
$(this).hide();
});

jQuery Animations

The HTML DOM document object is the specified owner of all other objects in any web page .

Finding sn HTML ELement as .

document.getElementById(id).
document.getElementByTagName(name).
document.getElementByName(name).

var x document.getElementByTagName("p").

jQuery Format.


< script type="text/javascript" >
$(document).ready(function(){
})
< /script >