CODEDIGEST
Home » FAQs
Search
 

Technologies
 

What is jQuery? How to use it in ASP.Net Pages?
Submitted By Satheesh Babu B
On 4/15/2009 9:01:10 AM
Tags: Interview Questions,jQuery  

What is jQuery?

jQuery is a light weight JavaScript library which provides fast and easy way of HTML DOM traversing and manipulation, event handling, client side animations, etc. One of the greatest features of jQuery is, it supports an efficient way to implement AJAX applications because of its light weight nature.

Visit the home page, jQuery.com

 

How to use jQuery library in our ASP.Net project?

Download the latest jQuery library from jQuery.com and include the reference to the jQuery library file in our ASPX page.

 

<script src="_scripts/jQuery-1.2.6.js" type="text/javascript"></script>

        <script language="javascript">

            $(document).ready(function() {

            alert('test');

            });

        </script>

 

Note

I have copied the jQuery library into a folder called _scripts in the solution.

 

Learn how to use the jQuery library hosted by Google's CDN in ASP.Net here.

 

Recent FAQs
  • View All FAQs..