JQuery Library
From w3cyberlearnings
Contents |
jQuery Library
You need to have jQuery library in order to write a jQuery code. jQuery is a cross-browser JavaScript library designed to handle the client-side scripting of HTML. jQuery has the same extension as JavaScript.
Download Link and Google hosting URL
- http://blog.jquery.com/2011/11/03/jquery-1-7-released/ Download
- https://developers.google.com/speed/libraries/devguide JqueryLink
Note
When you use the google hosting URL jQuery library, you don't need to download.
Call jQuery library from local (download)
You have to provide the URL or path to the jQuery library.
<script language="javascript" src="jquery.js" type="text/javascript"></script>
Call jQuery library from Google Hosting URL
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"> </script>
Related Links
- jQuery Library
- jQuery First Project
- jQuery Comments