Click here to Skip to main content
15,919,931 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
jquery(each version) put the head

JavaScript
<head>
<script src=".....jquery1.x.x">
</head>


when the finish page load --- does the jquery file download in client side?

what happen?

jquery or jquery.min : effect and improve website speed---which?
Posted
Updated 30-Sep-13 1:33am
v2
Comments
[no name] 30-Sep-13 4:49am    
min file is minified version,with less size compared to normal file.
use firefox with firebug and yslow add on , u can know better, or try fiddler for traffic(you can requests ur site make to server from browser)
Nelek 30-Sep-13 5:40am    
Please get used to write proper english. SMS-Chat makes your apportations look not serious. Besides, not all people are english speakers and can have problems understanding what you say.

see you will find three version of java script file in your jquery.
1.jquery-1.4.1-vsdoc.js
2.jquery-1.4.1.js
3.jquery-1.4.1.min.js

-vsdoc.js is there to provide intellisence for the visual studio. If you dont need intelligence you can remove this.

- .min version is the minfied verison of the javascript. Which is less in size and is basically for production environment.

.js is the the normal file contains everything. So it depends on you wht you want to use.
-SG
 
Share this answer
 
Quote:
when the finish page load --- does the jquery file download in client side?


Jquery file is downloaded at client machine.

Quote:
jquery or jquery.min : effect and emprove website speed---which?


jquery.min version is faster than other jquery files.
 
Share this answer
 
Hi,

1. Try to bundle & minification your script and css files. That will improve the page performance.

2. Try to refer the jQuery library files from the CDN (Content Delivery Network).
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900