<!DOCTYPE html>
<html>
<head>
<title>jQuery Demo Example</title>
<script src="jquery-latest.min.js"></script>
<script>
$(document).ready(function() {
$("div").click(function() {
alert("Welcome to start jQuery..!");
});
});
</script>
</head>
<body>
<div>
Click here to open Dialog box.
</div>
</body>
</html>