NextIndexPrevious

Programs in jQuery

6. Inserting text in a division.

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<style>
#msg{
	width:260px;
	height:60px;
	background-color:#CCC;
	padding:20px;
}
h3{
	width:300px;
	border:1px solid #CCC;
	text-align:center;
	cursor: pointer;
	cursor: hand;
	margin-bottom:20px;
}
</style>
<script src="jquery-1.10.2.min.js"></script>
<script>
$(document).ready(function() {
    $("h3").click(function(){
		$("#msg").text("jQuery is a fast, small and feature-rich <b>JavaScript</b>
         library.");		
	});
});
</script>
</head>

<body>
<h3>Click to insert Text</h3>
<div id="msg"></div>
</body>
</html>


Output :

Click to insert Text





Creater of JQuery


John Resig

John Resig

Born: May 8, 1984, Boston, U.S.A.