Category Archives: JQUERY - Page 2

getting started

Before we can interact with HTML elements on a page, those elements need to have been loaded: we can only change them once they’re already there.

<script type=”text/javascript”>

$(document).ready(function() {
alert(‘welcome to the star to jquery…’);
});

or

$(function() {
 code goes here
});
<script>

From where to start jquery

To use the jquery first you must download its library file . Click here to download .

Now include that the library file into your page like shown below

<head>
<title>JQUERY starts Here!</title>
<script type=’text/javascript’ src=’jquery-1.4.3.js’></script>
</head>