mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
38 lines
980 B
HTML
Executable file
38 lines
980 B
HTML
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>jQuery Mobile: Event Logger</title>
|
|
<link rel="stylesheet" href="../../themes/default/" />
|
|
<link rel="stylesheet" href="../../docs/_assets/css/jqm-docs.css" />
|
|
<script src="../../js/jquery.js"></script>
|
|
<script src="../../js/"></script>
|
|
|
|
<script>
|
|
$( document )
|
|
.bind("tap taphold swipe swipeleft swiperight scrollstart scrollstop orientationchange",function( e ){
|
|
$("#log")
|
|
.prepend("<li>"+ e.type +" event; target: "+ e.target.nodeName +"</li>")
|
|
.listview("refresh");
|
|
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div data-role="page" data-theme="b" id="jqm-home">
|
|
<div data-role="header">
|
|
<h1>Event Logger</h1>
|
|
</div>
|
|
|
|
<div data-role="content">
|
|
<p>Touch events on this page will log out below, prepending to the top as they arrive.</p>
|
|
|
|
<ul data-role="listview" id="log">
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|