TechieIT: Client Side Scripting using jQuery
Showing posts with label Client Side Scripting using jQuery. Show all posts
Showing posts with label Client Side Scripting using jQuery. Show all posts

Wednesday, August 24, 2011

jQuery basics

jQuery,  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

Sample to start with jQuery:

After downloading jQuery library add it to page like below:

<!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>


jQuery basics

jQuery,  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

Sample to start with jQuery:

After downloading jQuery library add it to page like below:

<!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>