jQWidgets jqxTouch swiperight Event
Last Updated :
14 Nov, 2021
jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTouch is used for identifying and triggering touch events such as 'swipe', 'swipe left', 'swipe right', 'tap', and 'orientationchange' on touch-enabled devices.
The swiperight Event is triggered when the user swipes towards the right side of the specified jqxTouch widgets.
Syntax:
$('#jqxTouch').on('swiperight', function () { // Code section });
Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder.
<link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" />
<script type="text/javascript" src="scripts/jquery.js"></script>
<script type="text/javascript" src="jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="jqwidgets/jqxtouch.js"></script>
<script type="text/javascript" src="scripts/jqx-all.js"></script>
Example: The below example illustrates the jQWidgets jqxTouch swiperight Event.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
href="jqwidgets/styles/jqx.base.css"
type="text/css"/>
<script type="text/javascript"
src="scripts/jquery.js">
</script>
<script type="text/javascript"
src="jqwidgets/jqxcore.js">
</script>
<script type="text/javascript"
src="jqwidgets/jqxtouch.js">
</script>
<script type="text/javascript"
src="scripts/jqx-all.js">
</script>
</head>
<body>
<center>
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h3>
jQWidgets jqxTouch swiperight Event
</h3>
<div id="jqx_Touch">
<div style="height: 100px;
width: 300px;
color: black;
border-radius: 10px;
background: green;">
<b>Swipe Right</b>
</div>
</div>
<div id="log"></div>
<script type="text/javascript">
$(document).ready(function () {
$('#jqx_Touch').jqxTouch({
orientationChangeEnabled: true
});
$('#jqx_Touch').on('swiperight',
function () {
$("#log").html("Swiped right side");
});
});
</script>
</center>
</body>
</html>
Output:
Reference: http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtouch/jquery-touch-api.htm