introduction

A basic introduction to jQuery and its concepts

By Dibakar | November 1st, 2009 Posted in jQuery 20 comments »

How jQuery Works

  • Original Author: John Resig.
  • jQuery: The Basics

    This is a basic tutorial, designed to help you get started using jQuery. If you don’t have a test page setup yet, start by creating a new HTML page with the following contents:

    <html>
    <head>
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript">
    </script>
    </head>
    <body>
    <a href="http://jquery.com/">jQuery</a>
    </body>
    </html>

    Read more >>