Google Add

Search

Jquery for beginner , How to start with Jquery




What is Jquery


Jquery is Javascript Library. The main advantage of Jquery is you have to write less code as compared with Javascript . As per Jquery official website jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.


How to start with jquery


If you are new to jquery then first of all visit to Jquery website and download the jquery code. There are two version available for jquery one is production and other is Development.


The difference between these two version is production version is compressed(size 31kb) and development(size 229kb) is uncompressed . But if you're beginner you don't need development version just download the production version.


Google Hosted Jquery Library


You don't need to download the jquery version into your local version.


Just include following script into your code and your ready to use jquery


<script type="text/javascript" language="Javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>


Microsoft Hosted Jquery Library


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

No comments:

Post a Comment