jQuery.mobile.silentScroll()

Scroll to a particular Y position without triggering scroll event listeners. Scroll to a particular Y position without triggering scroll event listeners. jQuery.mobile.silentScroll( yPos ) yPos Number

jQuery.mobile.path.parseLocation()

Utility method for retrieving the current location as a parsed object. This method gets the current location via getLocation() and returns the result of parsing this value via parseUrl(). jQuery.mobile.path.parseLocation() This method does not accept any arguments.

jQuery.mobile.path.isSameDomain()

Utility method for determining if a URL has the same domain. Utility method for determining if two different URLs share the same domain. This function returns a boolean true if the domain is the same, false if not. jQuery.mobile.path.isSameDomain( absUrl1, absUrl2 ) absUrl1 String

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.makeUrlAbsolute()

Utility method for converting a relative URL to an absolute URL. This function returns a string that is an absolute version of the relative URL passed in. jQuery.mobile.path.makeUrlAbsolute( relUrl, absUrl ) relUrl String

jQuery.mobile.path.isRelativeUrl()

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

jQuery.mobile.changePage()

Programmatically change from one page to another. Programmatically change from one page to another. This method is used internally for the page loading and transitioning that occurs as a result of clicking a link or submitting a form, when those features are enabled. jQuery.mobile.changePage( to [, options ] ) to

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

jQuery.mobile.path.getDocumentBase()

Utility method for retrieving the original document base URL. jQuery.mobile.path.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 ori

jQuery.mobile.path.getLocation()

Utility method for safely retrieving the current location. The browser's location.href may contain the username/password information. getLocation() always returns location.href stripped of the username/password information if present, ensuring that your code is not vulnerable to XSS attacks. jQuery.mobile.path.getLocation() This me