JQuery Classroom image

Gaurav  Raturi / Teacher / Web Technology

 
To post your Question Join Classroom
 
Lesson Topics's No:-  ||
Lessons:-How to Call a jQuery Library Functions?

How to Call a jQuery Library Functions?
As almost everything, we do when using jQuery reads or manipulates the document object model (DOM), we need to make sure that we start adding events etc. as soon as the DOM is ready.
If you want an event to work on your page, you should call it inside the $(document).ready() function. Everything inside it will load as soon as the DOM is loaded and before the page contents are loaded.
To do this, we register a ready event for the document as follows:
$(document).ready(function() {
// do stuff when DOM is ready
});
To call upon any jQuery library function, use HTML script tags as shown below:
<html>
<head>
<title>The jQuery Example</title>
<script type="text/javascript"
src="/jquery/jquery-1.3.2.min.js"></script>
<script type="text/javascript" language="javascript">
// <![CDATA[
$(document).ready(function() {
$("div").click(function() {
alert("Hello world!");
});
});
// ]]>
</script>
</head>
<body>
<div id="newdiv">
Click on this to see a dialogue box.
jQuery
13
</div>
</body>
</html>
This will produce the following result:
Click on this to see a dialogue box.

 
 
 
image
Gaurav  Raturi

Skills    JQuery

Qualifications :-
Location :-Tehri,Dehradun,Uttarakhand,India
Description:-

5 year of experience in web development , have good experience in jquery, php,css and html .


Explore
 

  Students (0)