jQuery Reading Assignment

  1. jQuery is a free online JavaScript library that compile a bunch of files with different codes available for using different functionalities within JavaScript programming.
  2. It help us as developers offering us a lot of options without necessarily write the code aimed to achieve an specific purpose in the program. It is not necessary “to invent the wheel”. Therefore we can access to the library and get a code which compile the functionality or actions we need.
  3. Depending of the needs of the programmer, there are two versions. The uncompressed version is 160kb and it’s easy to read and modify but it is a large size file. In the other hand the minified version is compressed and allow us to access to the same resources without comments, spaces or unnecessary elements. Its 23kb size.
1 Like

jQuery Answers

  1. jQuery is a library that makes it quicker and easier to build webpages and webapps.

  2. Because it is a way to write fewer lines of code do more with javascript. Often with jQuery what could take 10-20 lines of regular javascript code can be done with one single line when utilizing the jQuery library.

  3. We have two versions of jQuery to allow for quicker download time for site visitors. the uncompressed .js file is easy to read & modify but is around 160kb in size (at time of answer submission) while the minified .js code is harder to read do the omission of all comments, whitespace, & unnecessary characters drastically reducing file size to a mere 23kb

2 Likes
  1. jQuery is a popular JavaScript library
  2. we can use jQuery .js files in our projects and potentially use 1 line of code instead of dozens to achieve the desired results
  3. uncompressed version contains the whole code and therefore the files are larger, while the minified version takes less space, quicker to load and the code is simplified
1 Like
  1. What is jQuery?
    jQuery is a JavaScript library that is able to be publicly accessed and used.

  2. How does it help us as developers?
    jQuery helps developers as we can use the jQuery library in our own code instead of having to write everything ourselves. It saves us time and ensures that the code will very likely be usable in every browser that will use the code.

  3. Why do we have 2 version of jQuery - minified and uncompressed?
    The uncompressed is the file that we can read to understand the code and how it works. It is a much larger file size than the minified. The minified version is the one that is used in our code as it has the functionality but is smaller in file size so it is faster to load and run the code.

1 Like
  1. What is jQuery?
    JQuery is a library written in javascript.
  2. How does it help us as developers?
    JQuery helps make writing powerful code easier to write.
  3. Why do we have 2 version of jQuery - minified and uncompressed?
    The uncompressed version can be read and tweaked, the compressed version loads faster in the browser,
1 Like
  1. jQuery is the largest javascript library that helps developers build websites faster and easier, used by twitter, Microsoft, espy, etc.
  2. It helps us as developers as it allows us to use code that is already created instead of reinventing the wheel. Also allows websites to maintain compatibility with different browsers.
  3. uncompressed, is for less experiences developers so there is comments and such that make it easier to understand, but it is larger in size.
    minified, is for experienced programmers that don’t need the comments to understand the code, also a lot smaller in size.
1 Like
  1. jQuery is a free Javascript library.
  2. It helps developer to write more powerful JavaScript apps while using fewer lines of code.
  3. The minified version of jQuery has comments, whitespace and other unnecessary characters removed from the file, therefore squeezing its size to 23kb. Although the code this version is more difficult to read, this is the version recommended for use since it is quicker for visitors to download.
    The uncompresses version is easier to read and modify, however it is much bigger in size.
1 Like

What is jQuery?
It is a library that you can access a lot of useful code with.

  • How does it help us as developers?
    It to help your projects get made quicker and easier.

  • Why do we have 2 version of jQuery - minified and uncompressed?
    It depends on how much storage space you are willing to take, the first one has 23kb and the second has 160 kb.

1 Like
  1. What is jQuery?*
    A library for javascript to help developers build sites and apps.
  2. How does it help us as developers?
    It allows the developer to easily use interactive elements to sites and apps.
  3. Why do we have 2 version of jQuery - minified and uncompressed?
    One, uncompressed, is useful to read and modify. The other, minified, is more useful to use in the execution of the code since it is much smaller in size and results in lower latency for the user.
1 Like

1.- A free JS library.
2.- It has lots of functions on it for us developers to use.
3.- The latter is more optimized.

2 Likes
  1. What is jQuery?
    jQuery is a library that makes it quicker and easier to build JavaScript webpages and web apps.

  2. How does it help us as developers?
    With jQuery you can write powerful JavaScript apps using fewer lines of code.

  3. Why do we have 2 version of jQuery - minified and uncompressed?
    The uncompressed file is easy to read and modify with 160kb while the minified file has all comments, whitespace, and other unnecessary characters removed from the file with 23kb.

1 Like
  1. jQuery is a library that makes it quicker and easier to build JavaScript webpages and web apps.

  2. With jQuery you can write powerful JavaScript apps using fewer lines of code. jQuery is great for things like animations, Ajax requests, DOM manipulation, image effects, and user interface elements. jQuery lets you easily write cross-browser JavaScript code.

  3. The uncompressed .js file is easy to read and modify. The minified .js file has all comments, whitespace, and other unnecessary characters removed from the file.

1 Like
  1. What is jQuery?
    jQuery is a library you can link to your page that provides many useful functions and makes writing code shorter, it is the most popular JS library in use today.
  2. How does it help us as developers?
    It makes writing code shorter and lets us do things more easily. it adds a lot of functions for various things so u dont have to spend the time re-writing code someone else already wrote.
  3. Why do we have 2 version of jQuery - minified and uncompressed?
    jQuery comes uncompressed with all the notes and is more easily read and modified.
    the compressed version doesnt have anything in it besides necessary code and is the one u often want to use because it is easier to load.
1 Like

1 What is jQuery?
Is the most pupular Javascript library, and as many usecases. It makes building Javascript web pages a lot easier.
2How does it help us as developers?
jQuery makes building wegpages faster and easier.
+Adding animated effects to elements
+Making XML (Ajax) requests
+Manipulating the DOM
+Creating image slideshows
+Making drop-down menu
+Creating drag-and-drop interfaces

  • Adding power to forms
    +Making acode compatible for all browsers
    3Why do we have 2 version of jQuery - minified and uncompressed?
    UNCOMPRESSED version is the version as it was develope, that means with spaces, indentations and comments. It is easy to read.
    MINIFIED means its compressed and they have removed all unneccessary code. like spaces, indentations and comments. That means that the file is smaller and is loaded faster by the browser. So the Minified is the best to choose.
1 Like
  1. What is jQuery?
    Jquery is a group of libraries with common task and routines
  2. How does it help us as developers?
    You can use Jquery functions in your code. Well made code tested for the community.
  3. Why do we have 2 version of jQuery - minified and uncompressed?
    The uncompressed version allows you to follow the code in your debuging, and minified is a compact version unreadable
1 Like
  • What is jQuery?

It is a JavaScript library.

  • How does it help us as developers?

By giving us the tools to create a website with features that have already been coded.

  • Why do we have 2 version of jQuery - minified and uncompressed?

Minified has all the comments and explanations suppressed so that we can use it on the website.
The uncompressed has everything on it and it is heavier. we use it to understand the code thats in it.

1 Like
  • What is jQuery?

JQuery is a library that makes it quicker and easier to build webpages. The benefit is you can sometimes only write one line of code instead of 10 - 20 lines or more using JQuery.

  • How does it help us as developers?

It helps us create code more efficiently and reuse code. Some of the applications of JQuery are the following: creating animated slide shows, manipulating the DOM, making XML (ajax) requests, and making drop down menus. These are just some of the features and benefits of how JQuery can help us as developers.

  • Why do we have 2 version of jQuery - minified and uncompressed?

The uncompressed version was created so that you can read the code very easily.
However, the uncompressed version is 160kb while the minified version is 23kb. The one to download is the minified because the file size is much smaller, but there it is harder to read the code. You can read the code with the larger file, but the one you want to use is the minified.

1 Like

jQuery is a JavaScript library which is free to download. As developers, jQuery helps us in that it makes writing code easier - it allows us to write less code. It helps us with creating features such as animation effects, Ajax requests, manipulating the DOM, create image slideshows, and user interface elements. It also helps the code run on various browsers. The reason for having 2 different versions of jQuery is that the uncompressed version is easy to read/modify, but the minified removes comments and whitespace from the file, making the file size smaller. The minified version is what developers want to use on their finished version of their sites.

1 Like
  1. JQuery is a library that makes it easier for programmers to build websites and apps using JavaScript.
  2. It condenses long lines of code into short more concise lines, and it lets you easily write cross-browser JavaScript code.
  3. We have the uncompressed version which is the entire Jquery file that is 160kb in size and we have the minified version at 23kb which is more widely used. The minified version has all unnecessary characters removed from the file
1 Like
  1. jQuery is a library
  2. It provides us with many features (interface) already coded so we can save time.
  3. Minifed is the version without commentary that is not necessary for the end user while uncompressed is the fully documented version useful when developing.
1 Like