-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathjQuery.mobile.path.isAbsoluteUrl.xml
47 lines (44 loc) · 1.7 KB
/
jQuery.mobile.path.isAbsoluteUrl.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0"?>
<entry type="method" name="jQuery.mobile.path.isAbsoluteUrl" return="Boolean">
<title>jQuery.mobile.path.isAbsoluteUrl()</title>
<desc>Utility method for determining if a URL is absolute.</desc>
<signature>
<argument name="url">
<type name="String" default="0">
<desc>A relative or absolute URL.</desc>
</type>
</argument>
</signature>
<example>
<desc>Various uses of jQuery.mobile.path.makeUrlAbsolute</desc>
<css><![CDATA[
#myResult{
border: 1px solid;
border-color: #108040;
padding: 10px;
}
]]></css>
<html><![CDATA[
<div role="main" class="ui-content">
<input type="button" value="http://foo.com/a/file.html" id="button1" class="myButton" data-inline="true" />
<input type="button" value="//foo.com/a/file.html" id="button2" class="myButton" data-inline="true" />
<input type="button" value="/a/file.html" id="button3" class="myButton" data-inline="true" />
<input type="button" value="file.html" id="button4" class="myButton" data-inline="true" />
<input type="button" value="?a=1&b=2" id="button5" class="myButton" data-inline="true" />
<input type="button" value="#foo" id="button6" class="myButton" data-inline="true" />
<div id="myResult">The result will be displayed here</div>
</div>]]></html>
<code><![CDATA[
$(document).ready(function() {
$( ".myButton" ).on( "click", function() {
var isAbs = $.mobile.path.isAbsoluteUrl( $( this ).attr( "value" ) );
$( "#myResult" ).html( String( isAbs ) );
})
});
]]></code>
</example>
<longdesc>
<p>Utility method for determining if a URL is absolute. This function returns a boolean true if the URL is absolute, false if not.</p>
</longdesc>
<category slug="methods/path"/>
</entry>