Assignment: Define and Describe JQuery
Review and research the following terms or concepts describing JQuery usage and discussing the role of JQuery in
web application development.
- What is JQuery?
-
"jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal
and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works
across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed
the way that millions of people write JavaScript."-- Credit--
https://jquery.com/
- What do they mean by a library?
- What are some of the advantages of JQuery?
-
"JQuery makes it easier for designers to control HTML events, animations, and other
interactions on a web page by adding and removing style sheet handlers. web designers can
quickly and easily write these handlers to the document on specified events, such as a mouse
click or a hover, and when we do so, it will change the style and/or position of
that element."-- Credit--
https://www.rezstream.com/blog/the-benefits-of-using-jquery
- What are some of the disadvantages of JQuery?
- List and describe three or more examples of JQuery libraries?
-
"1) .val() =Get the current value of the first element in the set of matched elements
or set the value of every matched element. 2) .css() = Get the value of a computed style property
for the first element in the set of matched elements or set one or more CSS properties for every
matched element. 3) .click() = Bind an event handler to the “click” JavaScript event, or trigger that
event on an element."-- Credit--http://api.jquery.com/
- How does JQuery relate to and interact with Javascript?
-
JQuery is Javascript, but put into library form to simplify programming tasks