Wednesday 18 April 2012

JQuery

JQuery really help to build powerful and interactive UI development

I really love jQuery features. It’s help me to develop more interactive and powerful UI designs. JQuery is a JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.

You can download JQuery library files from http://jquery.com/. JQuery is open source library you don’t have to do anything special to choose one license or the other and you don’t have to notify anyone which license you are using. You are free to use a jQuery project in commercial projects.

How to use Jquery?

 <!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  <script type="text/javascript" language="javascript">
   $(document).ready(function(){
   // Your code here
 });
  </script>
</head>
<body>
</body>
</html>


JQuery Features

  1. Events

  2. CSS Manipulation

  3. Animations

  4. Ajax

  5. Plugins

  6. Interactions

  7. Widgets

  8. Utilities

  9. Effects

  10. DOM implementations

  11. Cross-browser support 

  12. Compatibility with languages


No comments:

Post a Comment