- What is jQuery?
jQuery is a free libary for Javascript - How does it help us as developers?
It makes tasks like create slideshows, popup menus, drop down menus, advanced form elements, manipulate DOM and much more very easy. Its got plugins that are built for it to achieve extra functionality in your web app. - Why do we have 2 version of jQuery - minified and uncompressed?
The uncompressed version is readable and maintanable, The minified version is as small as possible to allow for the script to load faster on pages.
- What is jQuery?
Jquery is the most popular JS library in use today.
- How does it help us as developers?
It can help developers by saving them time. jQuery makes it quicker and easier to build as you can write one line of code which wouldâve taken 10 â 20 lines in JS code.
- Why do we have 2 version of jQuery â minified and uncompressed?
Uncompressed file is easy to read and modify, minified has all comments, whitespace and unnecessary elements removed from the file. This is the version you want placed on the website as its file size is smaller making it quicker for visitors to download.
- jQuery is a free JavaScript library.
- jQuerry lets you write JavaScript apps with fewer lines of code and facilitates easily adding animations, Ajax requests, DOM manipulation, image effects, and user interface elements.
- The uncompressed version is for human readability while the minified version is for production use (what the browser will work with in the end product).
1 JQuery is a free javascript library.
2. It helps us put a lot of functionalities in just a few lines of code. It saves programmerâs time.
3. Minified version is being read by the website, but programmers use uncompressed version while writing the code.
1 jQuery is a free JavaScript library
2 With jQuery you can write powerful JavaScript apps using fewer lines of code
3 The uncompressed version of jQuery is the is easy to read and modify, but itâs around 160kb in size. The minified version is smaller in size but no easy read
- JQuery is a free JavaScript library, which contains snippets of re-usable JavaScript code.
- It is useful for developers because it keeps us from having to write a piece of code that someone has already written. Saves time.
- The minified version of the JQuery file is smaller and faster to load onto the viewerâs browser.
- What is jQuery?
Jquery is a Library of reusable code - How does it help us as developers?
It helps developers save time using code presets thatâs already been discovered to save time. - Why do we have 2 version of jQuery - minified and
Uncompressed is a much larger file that contains comments, whitespace and other characters which make it easier for us to read and modify.
Minified is a smaller file that we would use in production to reduce the load time for our users.
- What is jQuery?
- A Library that makes it quicker and easier to build JS webpages and web apps
- How does it help us as developers?
- With jQuery one line of code is substituted for many multiple of lines of code
- Why do we have 2 version of jQuery â minified and uncompressed?
- Minified
- Every thing unnecessary for the code to run is removed
- Comments, whitespaces, unnecessary character etc
- Approx 23kb easy for visitors to sites to download
- Every thing unnecessary for the code to run is removed
- Uncompressed
- Easy to read and modify
- Approx 160kb is size
- Minified
- A library of code that is free for everybody to use.
- It makes life easier for all the programmers as it saves so much time for him/her writing a lot shorter code to achieve goals.
- The bigger one is the one with explanation of the code in it, the simplified one is the one should be used on website for speed purpose.
- jQuery is a javascript library that used to be or likely still is the most popular since itâŚ
- âŚhelps us save time (as any library does) particularly manipulating data served (ajax requests), layout and DOM moves, and maybe most importantly ensures cross-browser compatibility.
- Ther are 2 version of jQuery since one is for devs to read/understand/manipulate and the other is for the client to download and use as they interact with the webpage using it.
- What is jQuery?
jQuery is a library that makes it quicker and easier to build JavaScript webpages and web apps.
- How does it help us as developers?
jQuery assist developers to be more efficient. With jQuery a developer could write a single line of code to achieve what would have taken 10-20 lines of regular JavaScript code.
- Why do we have 2 version of jQuery â minified and uncompressed?
Minified is harder to read because the whole library is only 23kb. All comments, whitespace and unnecessary characters are removed from the file to make this happen. This version is the want people use on their sites because it is quicker for visitors to download.
Uncompressed is easy to read and modify. Since it is at least 160kb, it will take longer to download and it is not as desirable to use in websites. A developer can use uncompressed and then minify the JS in order to improve a website speed.
-
What is jQuery?
JQuery is a JavaScript library -
How does it help us as developers?
It allows us to write things which would normally take a lot more lines of code in a lot less lines of code.
Particularly, it gives us great tools to make requests to the server after the page has loaded (AJAX), add animating effects to elements like sliding in, manipulate the DOM by easily adding, removing and reordering content, making drop-down menus, creating drag and drop interfaces, adding power to forms by creating client-side validation or auto-complete AJAX fields that pull from the server. -
Why do we have 2 version of jQuery â minified and uncompressed?
Minified is best for final use in code as it is much smaller to load though it is hard to read and edit as a result - The uncompressed version is great if you want to take a look at the code or edit it
-
jQuery is a free JS library.
-
jQuery is a single .js file that you link to from your webpage. Your JS code then accesses the library by calling various jQuery functions. This allows you to write powerful JS apps using fewer lines of code. jQuery is very useful when wanting to add animated effects, Ajax requests, DOM manipulations, image effects and user interface elements. jQuery lets you easily write cross-browser JS code.
-
There are two versions of jQuery:
-
uncompressed .js file is easy to read and modify but is around 106kb in size.
-
minified .js file has all comments, whitespace and unnecessary characters removed, reducing the size to 23kb and making it much quicker for visitors to your site to download. However, the code in this version is not easy to read.
- What is jQuery?
jQuery is a library of java script functions to make it easier to build a web app - How does it help us as developers?
instead of writing 10 or 20 lines of code for a function you can get away with just 1 or 2 lines making it a lot quicker. - Why do we have 2 version of jQuery - minified and uncompressed?
the minified version is smaller so it much quicker to download.
-
What is jQuery?
jQuery is the most popular java script library. -
How does it help us as developers?
It saves time by reusing code. you can link to jQuery instead of writing long code yourself. -
Why do we have 2 version of jQuery â minified and uncompressed?
The uncompressed version has comments included. the samller version is only code witout any comments.
-
jQuery is a JS library that makes assist developers and programmers in building webpages and web applications.
-
JQuery makes it easier and faster to write code. Instead of writing complex, multi line codes which increases the chances of errors and takes up time, jQuery allows the programmer to implement functionalities with only one line of code or by just copying the code directly from the library.
-
Uncompressed is the unedited jQuery library. The code is easier to read but the file is larger, coming in around 160 kb. Minified is the compressed version of jQuery library. A number of comments, lines, whitespaces, unnecessary characters have been removed and the library has been compressed down to 23 kb. The code is difficult to read though but the minified version is the most common jQuery used around the web.
- its a library of JS code
2.it contains code for all kinds of effects you might want in your app/site, and by calling it you donât have to wright it yourself.
3.uncompressed contains comments etc to make it easy to read and adapt for us as programmers, but its a 5x larger file than minified so you want to use minified because your app/site will be quicker for the users.
- A library that helps you build javascript apps and webpages
- We can do more with less lines of codes. It adds functionality and helps to build cross browser Javascript code.
- uncompressed is bigger but the code is more complete. This makes it easier to read and modify.
minified is smaller and loads faster for the user when implemented.
- JQuery is a library of vetted javascript code.
- It allows programmers to get more accomplished with fewer lines of code.
- Uncompressed is easier to read but is contained in a larger file while the minified version is harder to read but is smaller due to not containing any unnecessary information. It can be loaded faster because of this.
What is jQuery?
- jQuery is a Javascript library that makes it quicker and easier to build webpages and web apps. Makes it easier to write more powerful Javascript apps.
How does it help us as developers?
- Allows developers to efficiently write the same functionality with fewer lines of code in Javascript
Why do we have 2 version of jQuery â minified and uncompressed?
- The uncompressed version is easier to read and modify while the minified version is significantly smaller in terms of file size making it faster to download.