Why there are two different version of jQuery library?
Answer / chaitanya
jQuery library comes in 2 different versions.
Development
Production/Deployment
The development version is quite useful at development time as jQuery is open source and if you want to change something then you can make those changes in development version. But the deployment version is minified version or compressed version so it is impossible to make changes in it. Because it is compressed, so its size is very less than the production version which affects the page load time.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is jQuery is a JavaScript or JSON library file?
Which one is more efficient, document.getElementbyId( "myId") or $("#myId)?
How can we give face effect in jquery?
What are the popular jquery cdn? : jquery mobile
What is a jquery ?
Tell me how to executed jquery selectors? : jquery mobile
what are the features of jquery
What is the difference between $(window).load and $(document).ready?
Mention the advantages of cdn? : jQuery Mobile
What are the different types of selectors?
Describe the two types of cdns?
Which is fast document.getElementByID('txtName') or $('#txtName').?