So I want a list of all javascript commands what can manipulate or get information about URL's.
Example:
window.location.href
So I want a list of all javascript commands what can manipulate or get information about URL's.
Example:
window.location.href
Your question is not really clear. However, I suggest that you have a look one the Javascript reference from Mozilla. The response to your question is here, no doubt about that!
To list the properties of an object you can use this method:
var p = [];
for (var i in window.location)
{
p.push(i);
}
alert(p.join("\n"));
For window.location
I get: