jQuery tap Event
Example
Tap on a <p> element to hide it:
$("p").on("tap",function(){
$(this).hide();
});
Try it Yourself »
Definition and Usage
The tap event is triggered when the user taps on an element.
Tip: The tap event is equivalent 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 occurs. The function has an optional event object, which can contain any jQuery event properties (e.g. event.target, event.type, etc.) See jQuery Events Reference for more information. |
Try it Yourself - Examples
The
event object
Using the
event.target property to return which DOM element that triggered the tap event.