jQuery


jQuery is a JavaScript library that enables internet builders so as to add additional performance to their web sites. It is open supply and offered at no cost beneath the MIT license. In latest years, jQuery has develop into the preferred JavaScript library utilized in internet growth.

To implement jQuery, an online developer merely must reference the jQuery JavaScript file inside the HTML of a webpage. Some web sites host their very own native copy of jQuery, whereas others merely reference the library hosted by Google or the jQuery server. For instance, a webpage could load the jQuery library using the next line inside the <head> part of the HTML:

<script kind=”text/javascript”
src=”https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js”></script>

Once the jQuery library is loaded, a webpage can name any jQuery perform supported by the library. Common examples embody modifying textual content, processing type knowledge, transferring parts on a web page, and performing animations. jQuery can even work with Ajax code and scripting languages, equivalent to PHP and ASP to entry knowledge from a database. Since jQuery runs on the shopper facet (slightly than the online server), it could actually update info on a webpage in realtime, with out reloading the web page. A typical instance is “autocomplete,” through which a search type mechanically shows widespread searches as you kind your question. In truth, that is how TechTerms.com gives search strategies once you kind within the search field.

Besides its free license, the opposite important cause jQuery has gained such recognition is its cross-browser compatibility. Since every browser renders HTML, CSS, and JavaScript otherwise, it may be tough for an online developer to make a web site seem the identical throughout all browsers. Instead of getting to write down customized features for every browser, an online developer can use a single jQuery perform that may work in Chrome, Safari, Firefox, and Internet Explorer. This multi-browser assist has led many builders to change from commonplace JavaScript to jQuery, because it tremendously simplifies the coding course of.

You can learn more about jQuery and obtain the most recent library on the official jQuery web site.

Looking to know more Internet Terms