<!doctype html>
<head>
<title>Mobile-Web-App: jQuery .click()</title>
<meta charset="utf-8">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script>
$(document).ready(function(){
$("#clickme").click(function(){
alert("'clickme' Clicked!");
});
$(document).click(function(){
alert("document Clicked!");
});
});
</script>
</head>
<body>
<p><b>Mobile-Web-App: jQuery .click()</b></P>
<p id="clickme">Click Me</p>
</body>
</html>
Related:
- Handle event using .bind() in jQuery
- Handle event using .bind() and .unbind() in jQuery
- Handle event using .live() in jQuery

No comments:
Post a Comment