<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<script>
$(document).on("pagecreate","#page1",function() {
$("body").on("swipeleft",function(){
$("span").text("swipeleft!!!");
});
});
</script>
<script>
$(document).on("pagecreate","#page1",function() {
$("body").on("swiperight",function() {
$("span").text("swiperight!!!");
});
});
</script>
</head>
<body>
<div data-role = "page" id = "page1">
<div data-role = "header">
</div>
<div data-role = "main" class = "ui-content">
<span style = "color:orange"></span>
</div>
</div>
</body>
</html>