jQuery Reading Assignment

  1. jQuery is a free Javascript library.
  2. It helps us to re-use existing code for things like animation, DOM manipulation, image effects and user interface elements. It enables us to write code using fewer lines of code.
  3. Uncompressed version contains comments so it is easier to understand, but it is larger. On the other hand the minified version is free from unneccessary clutter and is smaller in size - we use this one to implement on our website so it is quicker to download by the client.
1 Like
  1. jQuery is a library that makes it quicker and easier to build JavaScript webpages and web apps thru pre-written code.

  2. Saves us time by allowing us to do more with less lines of code.

  3. Uncompressed is a larger file but more developer friendly and easier to read considering it includes code comments. Minified removes all code comments and unnecessary characters making it a smaller file and faster for user to download.

1 Like
  1. jQuery is a free Javascript library.
  2. It helps us add functionality to our website without writing a lot of code.
  3. The minified version has comments and whitespaces removed to load faster. The uncompressed version is bigger but is easy to read and modify.
1 Like
  1. A library of Javascript programs that can be easily integrated into our websites and web apps.

  2. it helps us save time and also helps to ensure that our code works seamlessly across all web browsers.

  3. To save download time for the users of our web pages.

1 Like
  1. What is jQuery?
    jQuery is a library for javascript programmers to use previously built functions for quicker and easier integrations into websites and web apps.

  2. How does it help us as developers?
    It helps us time writing codes for a specific function that has already been built by other developpers.

  3. Why do we have 2 version of jQuery - minified and uncompressed?
    They are for different purposes. Minified is for faster download. Uncompressed is easier to read and modify but a larger file.

1 Like
  1. jQuery is a free multi-use library that anyone can use to simplify or add functionality to their webpage/website.
  2. We are able to re-use code someone else has written already. We can add functionality by simply calling the library & calling functions within that library.
  3. One version has comments & regular coding, while the smaller compressed version has all that removed but retains functionality - this enables it to be a smaller download, thus increasing speed. May be useful for mobile apps etc since it is a smaller file.
1 Like

1.) & 2.)jQuery is a free Javascript library used by programmers to add dynamic effects to webpages saving time and energy for programmers so they are not required to write long redundant code for specific funtions they invoke.
3.)There exists two versions of jQuerey one (the latter) is for easily reading yet takes up a lot more space and the other (the former) is used in the website itself and is a fraction of the size of the uncompressed.js file.

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

  2. It allows code to be written more efficiently and therefore saves time and space.

  3. The uncompressed .js file is easy to read and modify, but it has a lot of code and comments and its size is bigger.The minified .js file has all comments, white space, and other unnecessary characters removed from the file, squeezing the whole library and makes it smaller in size.

1 Like
  1. jQuery is a library for Javascript programming.
  2. It makes it much easier to develop a program by granting access to an enormous quantity of code previously developed by other programmers. By using it, programmers can save a lot of time.
  3. The uncompressed version of jQuery is heavier. It is the most complete but also the heavier to download. The minified version does not include comments, whitespace or other unnecessary characters which would make the library much less convenient to use.
1 Like
  1. jQuery is a library that makes it quicker and easier to build JavaScript webpages and web apps. Often with jQuery you can write a single line of code to achieve what would have taken 10-20 lines of regular JavaScript code. jQuery is itself written in JavaScript, and comes in the form of a single .js file.

  2. Most commonly used functions are already written so we dont have to write them from 0 again. Another of jQuery’s strong points is that it makes it easy to write JavaScript that works on many different browsers. Incompatibilities between popular browsers such as IE, Firefox and Safari mean that you often need to write different chunks of JavaScript code for each browser. With jQuery, however, you just call the appropriate jQuery function and let jQuery deal with making the code run on different browsers.
    Amongst other things, jQuery is great for:

  • Adding animated effects to elements
  • Making XML (Ajax) requests
  • Manipulating the DOM
  • Creating image slideshows
  • Making drop-down menus
  • Creating drag-and-drop interfaces
  • Adding power to forms
  1. uncompressed .js file is easy to read and modify, but its bigger and so it is more convenient to use minified .js file because it has all comments, whitespace, and other unnecessary characters removed from the file. Although you can’t easily read the code, this is the version you’ll want to place on your site, as it’s much quicker for visitors to download.
1 Like
  • What is jQuery?
    It’s a Javascript library.

  • How does it help us as developers?
    It helps developers to create easy and powerful JavaScript apps and create eye-catching animations. Some of the functions make sliders, interactive forms, drop-down menus and drag & drop interfaces.

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

The Minified version is small, 23kb. It has no comments, whites-paces or unnecessary characters which makes it difficult to ready but easily downloadable in a website for the user.

The uncompressed .js file in contrast is easy to read and modify but very big in size, 160kb.

1 Like
  1. jQuery is a library that makes it quicker and easier to build JavaScript webpages and web apps. Often with jQuery you can write a single line of code to achieve what would have taken 10-20 lines of regular JavaScript code.
  2. It gives us the tools to create what we want to without re-inventing the wheel.
  3. Uncompressed is a larger file 160kb and Minified is a smaller file 23kb which removed comments, whitespace and unnecessary characters. Minified is the version you would want to use on your site.
1 Like
  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?
    Often with jQuery you can write a single line of code to achieve what would have taken 10-20 lines of regular JavaScript code.
  3. Why do we have 2 version of jQuery - minified and uncompressed?
  • The uncompressed .js file is easy to read and modify, but it’s around 160kb in size (at the time of writing).
  • The minified .js file has all comments, whitespace, and other unnecessary characters removed from the file, squeezing the whole library into a mere 23kb. Although you can’t easily read the code, this is the version you’ll want to place on your site, as it’s much quicker for visitors to download.
1 Like
  1. jQuery is a JavaScript library that’s free and the most used.
  2. It helps us code common functionalities by giving us the already developed code.
  3. Minified is just the raw code with least space wasted and the uncompressed had the developer notes and is easier to read
1 Like

Homework on jQuery - Questions October 13th, 2020

  1. What is jQuery?
    jQuery is a free Javascript library.

  2. How does it help us as developers?
    Allows you to write Javascript code with fewer lines of code, and write code usable with mulitple other
    programs.

  3. Why do we have 2 version of jQuery - minified and uncompressed
    Minified jQuery is minimized code, beneficial for website
    access by mobile devices.

Uncompressed jquery has all the notes and additional elements of the library. It improves accessibility and speed.

-Hector A. Martinez

1 Like
  1. Is a library that makes it quicker and easier to build Javascript web pages and web apps.

  2. It helps us to simplify our codes and make it shorter rather than we will wrote it in several lines of code and because of that we can save more time and space.

  3. Because it has to do with the choice and convenience of the programmer on what type of jQuery he/she is comfortable to use.
    He/she can choose between the two:
    -uncompressed.js which is easy to read and modify because it is the raw file, the full version, but it’s around 160kb in size.
    -minified.js which has all the comments and whitespace, and other unnecessary characters removed from the file, squeezing the whole library into mere 23kb and which makes it the more ideal version to place on your site because it’s much quicker for visitors to download.

1 Like
  1. jQuery is a free library written in JavaScript. It is widely used to simplify a creation of webpages and web apps.
  2. It is a well written JavaScript code wrapped in some useful methods that saves us a lot of time and energy. By using jQuery we can increase readability of code and decrease it’s complexity. This library is especially useful for manipulating the DOM, adding animated effects or making AJAX requests.
  3. We have two versions of jQuery for our convenience. The uncompressed .js file is easy to read and modify while minified version might be a bit cumbersome, but due to it’s smaller size it can be loaded much faster.
1 Like
  1. jQuery is a free JavaScript library that allows you to build web pages faster and easier.
  2. jQuery gives us access to powerful tools to create slick looking and highly functional web pages and apps without having to write all the code needed, saving lots of time, and allowing for even more creativity while designing a web page or app. It also allows for greater cross-browser compatibility.
  3. The minified version has all unnecessary parts removed (comments, etc.) so it is faster to download to a web page (use this one on your website), whereas the uncompressed version, while larger, is much easier to read and modify.
1 Like
  1. It is a library of code already written that you can reuse for free.

  2. Saves a lot of time not having to write and test code.

  3. The uncompressed is easy to read and modify while the minified is smaller in size so it downloads faster.

1 Like
  1. jQuery is a lightweight javascript library.
  2. it makes it easier and quicker to build a javascript webpage and web app. jQuery takes a lot of common tasks that require many lines of JavaScript code to accomplish, and wraps them into methods that you can call with a single line of code.
  3. uncompressed is bigger inside it contains all the comments , whitespace, and other unnecessary characters that help the developer to read and modify easily.
    Minified is much smaller it does not contains the comments, whitespace, and other characters and therefore faster for visitors.
1 Like