

Programs in jQuery
7. Inserting code 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").html("jQuery is a fast, small and feature-rich <b>JavaScript</b>
library.");
});
});
</script>
</head>
<body>
<h3>Click to insert Code</h3>
<div id="msg"></div>
</body>
</html>
Output :
Click to insert Code