ASP.NET - jquery

Asked By Lavinia Rayan on 10-Jan-12 12:42 AM

Hi,
How to use Jquery in dotnet applications and how to download and where ll install that downloaded plugins?pls give some steps for jquery applications?
Jitendra Faye replied to Lavinia Rayan on 10-Jan-12 12:46 AM

You can download jQuery from http://jquery.com/ and add the file as a regular external JS resource in your pages.



<script
type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>


Hope that helps.


Jitendra Faye replied to Lavinia Rayan on 10-Jan-12 12:49 AM

you will get example in this link-

http://jqueryui.com/demos

Riley K replied to Lavinia Rayan on 10-Jan-12 12:54 AM

Microsoft also provides jquery over CDN. Here are the links
http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.js
http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.min.js
http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7-vsdoc.js
You can include the script file directly in your page/master page, etc using:

 <script type="text/javascript" src="/scripts/http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.min.js"></script> 


Us use a Content Delivery network like Google or Microsoft:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>


Regards
svm satya replied to Riley K on 10-Jan-12 02:49 AM
You can Download jquery plugins into www.jquery.com websites in that see menu items one option called  "download" .click on download and see current releases.click on what plugin you want and copy the entair code and save it into notepad and name it as "jquery.js".you can add this into ur web site and consume in your page by writting HTML "head" section <script type="text/javascript" src="jquery.js"></script>

 
dipa ahuja replied to Lavinia Rayan on 10-Jan-12 02:53 AM
To use the jquery you have to download it , and just add the .js file and .css (optional for some controls) . download it from here: http://jqueryui.com/