element horizontally to the left and hide it: $("p").on("swipeleft",function(){ $(this).hide(); }); [Try it Β»](#) * * * ## Definition and Usage The swipeleft event is triggered when the user swipes horizontally to the left by more than 30px within one second (and vertically less than 75px). **Related Events:** - Triggered when the user swipes horizontally more than 30px or vertically less than 75px within one second. - Triggered when the user swipes horizontally to the right by more than 30px within one second. * * * ## Syntax $("_selector_").on("swipeleft",function(event){...}) | Parameter | Description | | --- | --- | | function(event) | Required. Specifies the function to run when the swipeleft event is triggered. The function has an optional event object, which can be any jQuery event property (e.g., event.target, event.type, etc.). For more information, please refer to the (#). | * * *  ## More Examples (#) Use the event.target property to return the DOM element that triggered the swipeleft event. * * jQuery Mobile Events](#)
Event Swipeleft
# jQuery Mobile swipeleft Event
[ jQuery Mobile Events](#)
## Example
Swipe a
YouTip