jQuery Reading Assignment

  1. a open source, free, often used .js library

  2. saves time (you don’t have to write new functions to create the same output you could have using jQuery), shortens your code (the space an own function would take in your code is higher than using a jQuery function)

  3. the uncompressed version is the version containing all the informations that are useful to know for a developer (e.g. comments). Something like a “students” version.
    The minified version is the one that should be linked from your code, since it is much more lightweight. Effects: the page loads faster (by the way, fast loading also becomes more and more important for ranking with your site well on search engine result pages. Not written in the text but I am doing SEO for many years now)

2 Likes

Reading Assignment: jQuery.

  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.
    It will bring a lot of eye candy features, effects to our programming and let us easily write cross-browser 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.
3 Likes

1- library of useable code
2- we can borrow to for our own JS websites to save time
3- minfied- all of the filler is removed and harder to understand. uncompressed- longer but easier to understand.

1 Like
  1. What is jQuery?

JQuery is a free javascript library that makes it easier to build apps and webpages.

  1. How does it help us as developers?

It allows us to access a range of features and functions quicker and more easily, that would otherwise takes many lines of code and a lot of time to program. It is also compatible across different kinds of browsers.

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

Uncompressed is easier to read and modify, but it’s big. Minified is smaller, so quicker to download, but you can’t easily read the code.

1 Like
  1. jQuery is a library that makes it easier to build JavaScript web pages and web apps.
  2. It makes it easier to build interactive elements into a webpage, make AJAX requests, manipulate the DOM, create animated effects, etc.
  3. One version is easier to read and the other is compressed for quicker downloading. The compressed version should be used in your functional version.
1 Like
  1. What is jQuery?
    It’s a library stored in a single .js file.

  2. How does it help us as developers?
    It can execute a ‘chunk’ of code using a single command.

  3. Why do we have 2 versions of jQuery - minified and uncompressed?
    Mini is stripped of comments, white spaces, and all other components not needed for the code execution.
    Makes it less readable but it’s ‘lighter’.

1 Like

1 It’s a free, big JS library, easy and quick to use. Great for animations, Ajax requests, DOM manipulation, image effects and web broswer user experience.
2. Allow developers to write useful app scripting fewer line of code. They can write a single line of code instead of 10 at least with JQuery.
3. Because the minified version is formatted in light version in order to be downloaded fast from the broswer. The uncompressed version it’s a bigger file more readable, this containing comments and the whole code indented and ready to be modified.

1 Like

What is jQuery?
Is a famous library for JavaScript. It simplifies a programmers life.

How does it help us as developers?
It helps us to achieve what we would with a single line of code. Using vanilla JS sometimes needs about 20 lines. With JQuery you can have it in a one liner.

Why do we have 2 version of jQuery - minified and uncompressed?
minified JQuery is a much smaller code, which fits in your website.
Uncompressed is easy to read but is a much bigger file.

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?
jQuery makes it easy to write powerful JavaScript apps and create eye-catching animated effects rivalling those of Flash movies. Amongst other things,

3)Why do we have 2 version of jQuery - minified and uncompressed?
Uncompressed is large file that makes it easier to read and modify
Minifield is a compressed version for faster download

1 Like
  1. JQuery is a free Javascript library
  2. JQuery contains many useful functions that allow developers to use higher level javascript functions without writing all the code needed. It also provides support for other browsers.
  3. Uncompressed jQuery is human-readable, it is used to provide developer a deeper understanding of jQuerry functions. Minified version has the same code but stripped of all the white spaces and extra code so it is as small as possible. It’s not human-readable but it loads much faster, that’s why we use it on our servers.
2 Likes
  1. What is jQuery?
  • jQuery is a javascript based library that allows for developers to have a more organized and efficient process.
  1. How does it help us as developers?
  • It helps us as developers because it allows for common functions that require many lines of code to be implemented easily as a single code from jQuery javascript library.
  1. Why do we have 2 version of jQuery - minified and uncompressed?
  • We have two versions of jQuery becaused minfied removes all the comments and indentation allowing for faster querying. Uncompressed is for developers that want to see the functions and what they do to be easily readable by any developer.
2 Likes
  1. jQuery is a library where programmers use to help them do animation and powerful script with just fewer line of codes than the original.

  2. It help us save time creating 10 line of code with jQuery you can use other programmers code to ease you and do more things than creating something someone already have done.

  3. It just simply differs in size. But that becomes the advantage of the minified it is compressed so it loads much faster than the uncompressed file.

2 Likes
  1. What is jQuery?

Jquery is a JavaScript liabrary.

  1. How does it help us as developers?

Using the JavaScript library gives developers the ability to replace 10 – 20 lines of code with a few lines of code that use th jQuery library.

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

The uncompressed version is easy to read, the minified version is what you want to run on your site or app because it downloads faster.

1 Like
  1. What is jQuery?
    It’s a library file the contains code for building javascript web pages and apps.

  2. How does it help us as developers?
    Developers can reuse the functions in the library files when creating their own web pages. Saves time.

  3. Why do we have 2 version of jQuery - minified and uncompressed?
    One version is the entire file and it is 160kB is size. The second version has been made smaller by removing comments and unnecessary characters in the file, it is 23kB in size.

1 Like
  1. jQuery is a Javascript Library where coders can source reliable code for just about any function you might need to make a unique GUI

  2. jQuery helps developers by saving them a lifetime of having to create code unnecessarily. Like it says, why reinvent the wheel when you can just input code.

  3. One version has a lot of user friendly spaces and indenting that makes it easy to read but takes up a lot of space, the alternate version eliminates the unnecessary spacing thus saves precious space and allows for faster loading of the script.

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

  2. 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. The uncompressed .js file is easy to read and modify, but it’s around 160kb in size.
    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. its a library with which you can reduce multiple lines of code to a single one.
  2. it speeds up and simplifies the proces
  3. minified has no comments in the code the uncompressed does
1 Like

1- jQuery is a free Javascript library with already built codes.

2- It saves us time and work.

3- The minified files are ready and easier to use, also they are smaller in size but it’s difficult to read them. The uncompressed files are easier to read and modify however they are bigger in size and not that practical.

1 Like
  1. What is jQuery?
    jQuery is one of the most popular free javascript script library which give a wide range of functionality others have already coded.

  2. How does it help us as developers?
    it allows developers to reuse code that other’s have made public. “do not have to reinvent the wheel”

  3. Why do we have 2 version of jQuery - minified and uncompressed?
    we have two versions for size purposes.

1 Like
  1. most popular javaScript library.
  2. do a lot of common task safe time and effort.
  3. uncompressed: big size but we can understand and change
    minified: small size but hard to change
1 Like