Ads (728x90)

Techonlogy

Subscribe Here

Sponsor

Social Share

Recent

Business

Video

Gallery

videos

Introduction to JQUERY
JQuery is a lightweight, "compose less, accomplish more", JavaScript library.

The purpose behind JQuery is to make it much less demanding to utilize JavaScript on your site.

jquery takes a great deal of regular tasks that obliges numerous lines of JavaScript code to achieve, and wraps it into techniques that you can call with a single line of code.

jquery also clarifies a great deal of the complicated things from JavaScript, as AJAX calls and DOM control.

The jquery library contains the specified highlights:

  • HTML/DOM control
  • CSS control
  • HTML Event methods
  • Effects & Animations
  • AJAX
  • Utilities

Why Use Jquery?

There are a bunches of other JavaScript structures out there, however jquery is most well known, furthermore the most extendable.

The jquery group thoroughly understands cross-program issues, and they have composed this information into the jquery library. jquery will run precisely the same in every browser from Mozilla to Internet 
Explorer 6.

To utilize jquery, you have to download the jquery library, and incorporate it on the pages you wish to utilize it.

The jquery library is a single JavaScript document, and you reference to it utilizing the HTML <script> tag:

<html>
<head>
<script src="jquery.js"></script>
</head>
<body>
<h1>HUBKART</h1>
</body>
</html>

Post a Comment