Parse the current page URL
Pass in a URI as a string and parse that
the url to be parsed
The .attr() method is used to return information on various parts of the URL.
string
Gets a parameter from the fragment segment
string
Gets the fragment segment at the especified position.
string
The .param() method is used to return the values of querystring parameters.
string
The .segment() method is used to return values of individual segments from the URL's path. Pass in an integer value to get the value of that segment - note however that the count is not zero-indexed like an array - i.e. .segment(1) returns the first segment, not the second one. You can also pass in negative values, in which case it will count back from the end of the path rather than forwards from the start.
string