jQuery usually comes as a single JavaScript file containing everything comes out of the box with jQuery.
To load local jQuery file
<script type="text/javascript" src="jQuery-1.4.1-min.js"></script>
Ideally this markup is kept in under <head></head> tag of your web page, however you are free to keep anywhere you want.
Do I need to refer jQuery file both in Master page/base page/template page and content page?
No, master page/base page/template page basically helps to create consistent layout for the page in the application. In case you have referred the jQuery file in master page/base page/ template page that cause rendering the file in the browser, you do not need to refer jQuery file the content page again.In summary, there should not be more than one <script> tag with jQuery file reference in the source code of the rendered web page in the browser.
What is the difference between jQuery-x.x.x.js and jQuery.x.x.x-min.js
In terms of functionality, there is no difference between the jQuery-x.x.x.js and jQuery-x.x.x-min.js (also called minified version). However this can play a vital role in the performance of the web page.How it affects the performance?
jQuery-1.4.4.js file size is 178 KB as against its minified version jQuery-1.4.4-min.js that is only 76.7 KB in size. So when your page loads in the client‟s browser if you are not using minified version, it loads 178 KB file that takes more time to load than 76.7 KB.Which version of jQuery file should be used?
In most of the recent releases so far, the core functionality of jQuery remains same however some more cool and better features are added. Ideally you should use the latest jQuery files available on the jQuery.com website. By doing this you ensure that your earlier functionality will still work and you can use new features available as part of the new release.Loading jQuery from CDN (Content Distribution Network)
What is CDN?CDN Stands for Content Distribution Network or also called Content Delivery Network is a group of computers placed at various points connected with network containing copies of data files to maximize bandwidth in accessing the data. In CDN a client access a copy of data nearer to the client location rather than all clients accessing from the one particular server. This helps to achieve better performance of data retrieval by client.
There are two leading CDNs available that hosts jQuery files.
Microsoft - To load jQuery from Microsoft AJAX CDN
jQuery file can be loaded from Microsoft AJAX CDN. You will need to keep following tags in your page.
<script type="text/javascript" language="Javascript" src="http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.1.min.js"></script>
OR
<script src=http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.4.4.min.js type="text/javascript"></script>
Google - To load jQuery from Google Libraries API
jQuery file can be loaded from Google CDN. You will need to keep following tag in your page.
<script type="text/javascript" language="Javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
Why to load jQuery file from CDN?
You may ask that if we can load the jQuery file from our own server why to load it from the CDNs. The answer is logical and very simple. The browser behavior is that whenever it loads any webpage, it keeps related files (eg. Javascript file, CSS file and Images) used for that page into its cache (also called history). When next time the user browses any web page, browser loads only those files that are new or modified and is not available in the browser cache or history. In this way, browser improves its performance and loads the page.The possibility is that if more and more websites are using CDNs, the user might have already browsed some other web pages that is using CDNs jQuery file and that file may have into browser cache; so when user browse your page and you are also using CDNs file, the older cached version of jQuery file will be used. In this way your page will load faster as browser will not have to load the jQuery file for your page again.
The benefit
- Faster page load as jQuery file need not to be downloaded
- Saves your bandwidth as jQuery file is not loaded from your server
- Scalable - generally CDNs place these files on the servers located at different geographical locations of the world so that they load faster so irrespective of from where your user is browsing your page, your application runs well.
0 comments:
Post a Comment