element and hide it: $("p").on("tap",function(){ $(this).hide(); }); [Try it Yourself Β»](#) * * * ## Definition and Usage The tap event is triggered when an element is tapped. **Note:** The tap event is similar to the jQuery click() method. * * * ## Syntax $("_selector_").on("tap",function(event){...}) | Parameter | Description | | --- | --- | | function(event) | Required. Specifies the function to run when the tap 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 tap event. * * jQuery Mobile Events](#)
Event Tap
# jQuery Mobile tap Event
[ jQuery Mobile Events](#)
## Example
Tap the
YouTip