Пример:
При нажатии любой из ссылок отобразить тип события
"HTML"
<div class="timer" style="border:1px solid grey;height:100px;"> </div>
"CSS"
div.timer {background-color: #eef; width:200px;height:200px;}
"Живой пример jQuery"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link href="http://slyweb.ru/css/jqueryiframe.css"
rel="stylesheet" type="text/css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("div").click(function(event) {
alert(event.type); // "click"
});
});
</script>
</head>
<body class="iframe">
<div class="timer" style="border:1px solid grey;height:100px;">
</div>
</body>
</html>
<style>
div.timer {background-color: #eef; width:200px;height:200px;}
</style>