Please enable Javascript to correctly display the contents on Dot Net Tricks!
 
Become an Expert in C#, .NET, MVC, JAVA, PHP, AngularJS, Hadoop, Android, iphone, Testing etc.
by Joining our Training Programs and Take Your Career to the Next Level! To know more make a call on +91 98 71 749695

Introduction to JQuery

Posted By : Shailendra Chauhan, 03 Jul 2010
Updated On : 14 Jul 2012
Total Views : 8,349   
 
Keywords : JQuery, JQuery with Asp.Net, JQuery History, JQuery Features pdf

JQuery is a cross-browser JavaScript library that is developed to simplify the client-side scripting of HTML.It was released in january 2006 at BarCamp NYC by John Resig. JQuery is free, easy to use and open source scripting language. JQuery's syntax are easy. Using Jquery we can select DOM elements, create animations, handle different types of events, and develop ajax based applications.

JQuery also provides facilities for developers to create own plugins on top of the JavaScript library. Using these capabilities, developers are able to create high level interaction and animation, advanced effects, theme-able widgets. This contributes to the formation of interactive and dynamic web pages.

Features of JQuery

JQuery is awesome scripting library. I am using it from one year and I am very much impressed to Jquery. I like it and find myself much comfortable to work with it.There are following features of JQuery :

  1. DOM traversal and modification (including support for CSS 1-3).

  2. HTML element selections.

  3. HTML element manipulation.

  4. CSS manipulation.

  5. Effects and animations.

  6. Extensibility through plug-ins.

  7. Ajax and Events

  8. Utilities - such as browser version and the each function.

Where to put our scripts?

  1. Between the HTML document head tags.

  2. Within the HTML document body (i.e. between the body tags).

  3. In an external file (and link to it from your HTML document).

First JQuery Program

<html>
<head>
<script type="text/javascript" src="jquery.js">/script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("p").hide();
});
});
</script>
</head>
<body>
<h2>Welcome To JQuery World !!</h2>
<p>This is a JQuery paragraph.</p>
<p>This is another JQuery paragraph.</p>
<button type="button">Click me</button>
</body>
</html> 

Note

  1. Both Google and Microsoft provides good support for jQuery.If you do not want to store the jQuery library on your website or own computer, you can load the CDN jQuery core file from Google or Microsoft.You can download the latest version of JQuery using following links.

  2. You can download JQuery 1.7 version cheat sheet from here

 
Further Reading
 
About the Author
Hey! I'm Shailendra Chauhan full-time author, consultant & trainer. I have more than 6 years of hand over Microsoft .NET technologies and other web technologies like JavaScript, AngularJS, NodeJS etc. I am an entrepreneur, the founder & chief editor of www.dotnet-tricks.com and www.dotnettricks.com. I am author of most popular e-books for technical Interview on ASP.NET MVC Interview Questions and Answers & AngularJS Interview Questions and Answers & LINQ Interview Questions and Answers.
I have delivered 100+ training sessions to professional world-wide over Microsoft .NET technologies such C#, ASP.NET MVC, WCF, Entity Framework and other mobile technologies such Ionic, PhoneGap, Cordova. Read more...
 
Free Interview Books
 
SUBSCRIBE & FOLLOW US
 
Browse By Category
 
 
Like us on Facebook