jQuery basics

Basics of jQuery

In this post we will see very basic of jQuery.How to start with jQuery?jQuery, is a Javascript library with cross-browser support and open source which simplify the client side scripting in web/html.
It supports

  • DOM,
  • CSS manipulation,
  • Ajax,
  • animations and effect
  • extendible plugins.


Get Started using jQuery:
jQuery needs to add library in html or web page which is a .js file that contains Ajax funcions, effects, DOM, events ...etc. You can download jQuery library from http://docs.jquery.com/Downloading_jQuery

After downloading jQuery library add it to page like below:
Sample to start with jQuery:

<!DOCTYPE html >
< html>
<head>
<title>jQuery Demo</title>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<form id="Form1" method="post" runat="server">
</form>
</body>
</html>

0 Comments :

Post a Comment