What is the difference between .js and .min.js?
Answer / chaitanya
jQuery library comes in 2 different versions Development and Production/Deployment. The deployment version is also known as minified version. So .min.js is basically the minified version of jQuery library file. Both the files are same as far as functionality is concerned. but .min.js is quite small in size so it loads quickly and saves bandwidth.
Is This Answer Correct ? | 0 Yes | 0 No |
How to delete cookies in jquery?
What is the difference between onload() and document.ready()?
In what scenarios jQuery can be used?
How can we apply css in last child of parent using jquery library?
What is the difference between settimeout() and setinterval() methods?
Define each() function in jquery?
How to programmatically trigger a click event thats being handled by jquery only?
How can we apply css in even childs of parent node using jquery library?
How to executed jquery selectors? : jquery mobile
What is the difference between $('div') and $('<div/>') in jQuery?
Difference between detach and remove? : jQuery Mobile
Explain the animate function.