This example shows two ways of defining on page load event. The callback function gets invoked as soon as the page is loaded. The second one is short notation of first one.
01
<
html
>
02
head
03
script
type
=
"text/javascript"
src
"js/jquery.js"
></
04
05
// Document is ready
06
07
//Type1
08
$(document).ready(function() {
09
alert("Page Loaded..1");
10
});
11
12
//Type2
13
$(function(){
14
alert("Page Loaded..2");
15
16
17
</
18
19
body
20
TEST
21
22