- JQuery is a fast and concise Javascript Library created by John Resig in 2006 with a nice motto : "Write Less, Do More"
- JQuery simplifies HTML Documents traversing, event handling, animating, and Ajax interactions for rapid web developments.
- JQuery is a javascript toolkit designed to simplify various tasks by writing less code. Here is the list of important core features supported by JQuery.
JQuery Featues
- DOM Manipulation:
- Event Handling
- AJAX Support
- Animations
- Lightweight
- Cross Browser Support
- Latest Technology
JQuery Example :
<html>
<head>
<title>The jQuery Example</title>
<script type="text/javascript"
src="/jquery/jquery-1.3.2.min.js"></script>
<script type="text/javascript">
// you can add our javascript code here
</script>
</head>
<body>
........
</body>
</html>