Hi,
jQuery is a coding language that is a branch from JavaScript.
jQuery works like JavaScript where its used to help with interaction and effects with your development code
Why jQuery for Development?
The best featuring for jQuery is the effects you can accomplish, with less code than what it would take with JavaScript. Most common jQuery effects are drop down menus, drag and drop elements, animations and form validation. Developers have also connected this with other coding languages like JSP, ASP, PHP and CGI.
Download the latest jQuery library from jQuery.com http://docs.jquery.com/Downloading_jQuery.
Add reference to the jQuery library file in ASPX page / Master page that uses jQuery.
<script src="_scripts/jQuery-1.5.js" type="text/javascript"></script>
<script language="javascript">
$(document).ready(function(){ $("a").click(function(event)
{ alert("Welcome to jQuery"); }); });
</script>
Here is a great article for How to Use Jquery with ASP.NET
http://www.codeproject.com/KB/ajax/AjaxJQuerySample.aspx