alert message in jquery function in hindi
<!DOCTYPE
html>
<html>
<head>
<title>Jquery
Example</title>
<script
type="text/javascript" src="jquery.js"></script>
//jquery library
</head>
<body>
<script
type="text/javascript"> //jquery program
$('document').ready(function(){
alert('Hello');
});
</script>
</body>
</html>
उपरोक्त
Example में
एक jquery Program
बताया गया है जिसका use
कर
के एक alert
Message Display किया
जाता है
जेसा
की आप जानते है की jquey
event पर
work करती
है तो पहले पेरेंथिसी में
document selector
बताया
गया है
इसे
लिखने से html
document select हो
जाता जाता है
तथा
अगले पेरेंथिद में ready()
function बताया
गया है तथा उसमे एक function
लिखा
गया है जिसमे एक alert()
का
code लिखा
गया है
0 komentar: