Jquery
Jquery Tutorial-Selecting elements in jquery
Suppose we have following html page containing different elements with different conditions..... <html> <head><title>Selecting elements in jquery</title> <script src="jquery.js" langua ...READ MORE...
Jquery Tutorial-In jquery passing argument in callback function
In an introduction you have learnt how to attach event on page load and calling a function. But in that case argument was not passed. Now we want to pass argument into the calling function. And if we do it as $(function(){ $("#link1").click ...READ MORE...
Jquery Tutorial-Starting with jquery
Traditionally we use onload attribute in body tag to start page load event or we use window.load=some function in javascript. And for attacthing some event with different elements we have to write attribute(s) with those elements. For exa ...READ MORE...