forked from jquery/api.jquery.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent.preventDefault.xml
28 lines (28 loc) · 1.04 KB
/
event.preventDefault.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0"?>
<entry name="event.preventDefault" type="method" return="undefined">
<title>event.preventDefault()</title>
<signature>
<added>1.0</added>
</signature>
<desc>If this method is called, the default action of the event will not be triggered.</desc>
<longdesc>
<p>For example, clicked anchors will not take the browser to a new URL. We can use <a href="/event.isDefaultPrevented/"><code>event.isDefaultPrevented()</code></a> to determine if this method has been called by an event handler that was triggered by this event.</p>
</longdesc>
<example>
<desc>Cancel the default action (navigation) of the click.</desc>
<code><![CDATA[
$( "a" ).click(function( event ) {
event.preventDefault();
$( "<div>" )
.append( "default " + event.type + " prevented" )
.appendTo( "#log" );
});
]]></code>
<html><![CDATA[
<a href="http://jquery.com">default click action is prevented</a>
<div id="log"></div>
]]></html>
</example>
<category slug="events/event-object"/>
<category slug="version/1.0"/>
</entry>