Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

Detecting A Click: click.

html
!
!

<!doctype html>
<html>
<head>
<title>Learning jQuery</title>

<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />

<script type="text/javascript" src="jquery.min.js"></script>


<style>

#circle {
width:200px;
height:200px;
background-color:green;
border-radius:100px;
}

.square {
width:200px;

height:200px;
background-color:red;
margin-top:10px;
}

</style>

</head>

<body>

<div id="circle"></div>

<div class="square"></div>

<div class="square"></div>


<script>

$("div").click(function() {

alert("Div Clicked!");


});

</script>




</body>
</html>

You might also like