jQuery.mobile.path.makePathAbsolute()

Utility method for converting a relative file or directory path into an absolute path. Given a path that is relative to another absolute path, this utility will convert the relative path to an absolute path based on the given absolute path. jQuery.mobile.path.makePathAbsolute( relPath, absPath ) relPath

jQuery.mobile.path.isAbsoluteUrl()

Utility method for determining if a URL is absolute. Utility method for determining if a URL is absolute. This function returns a boolean true if the URL is absolute, false if not. jQuery.mobile.path.isAbsoluteUrl( url ) url String

.jqmHijackable()

For users that wish to respect data-ajax=false parent elements during custom form and link binding jQuery Mobile provides the $.fn.jqmHijackable filter method. For users that wish to respect data-ajax=false parent elements during custom form and link binding jQuery Mobile provides the $.fn.jqmHijackable filter method. Settings: If, and only if, $.mobile.ignoreContentEnabled is set to true, this method will traverse the parent nodes for each DO

jQuery.mobile.getDocumentUrl()

Retrieve the URL of the original document. jQuery.mobile.getDocumentUrl( asParsedObject ) asParsedObject (default: false) Boolean The function normally returns the original document's URL as a string. However, if you specify a truthy value for this parameter, the original document's URL will be

jQuery.mobile.loadPage()

Load an external page, enhance its content, and insert it into the DOM. Load an external page, enhance its content, and insert it into the DOM. This method is called internally by the changePage() function when its first argument is a URL. This function does not affect the current active page so it can be used to load pages in the background. The function returns a deferred promise object that gets resolved after the page has been enhanced and

jQuery.mobile.getDocumentBase()

Utility method for retrieving the original document base URL. jQuery.mobile.getDocumentBase( asParsedObject ) asParsedObject (default: false) Boolean The function normally returns the original document base URL as a string. However, if you specify a truthy value for this parameter, the original

jQuery.mobile.degradeInputsWithin()

Alter the input type of form widgets. Some native input types have undesirable native behavior. jQuery.mobile.degradeInputsWithin will alter the input type of such elements during page creation to fallback input types whose native behavior is acceptable. You can then achieve the user experience you desire by instantiating jQuery Mobile widgets on the modified native elements. jQuery.mobile.degradeInput

jQuery.mobile.navigate()

Alter the url and track history. Works for browsers with and without the new history API. The $.mobile.navigate method provides a uniform history manipulation API for browsers that support the new history API and those that don't (hashchange). It works in concert with the navigate event by storing and retrieving arbitrary data in association with a URL (much like popState and replaceState). When the user returns to a URL set by the navigate met

.jqmEnhanceable()

Filter method to respect data-enhance=false parent elements during manual enhancement. For users that wish to respect data-enhance=false parent elements during manual enhancement or custom plugin authoring jQuery Mobile provides the $.fn.jqmEnhanceable filter method. Settings: If, and only if, $.mobile.ignoreContentEnabled is set to true, this method will traverse the parent nodes for each DOM element in the jQuery object and where it finds a

jQuery.mobile.activePage

Reference to the page currently in view. Note: jQuery.mobile.activePage is deprecated as of jQuery Mobile 1.4.0 and will be removed in 1.5.0. Use the getActivePage() method from the pagecontainer widget instead.