Web/API/Request/url

From Get docs


The url read-only property of the Request interface contains the URL of the request.

Syntax

var myURL = request.url;

Value

A USVString indicating the url of the request.

Example

In the following snippet, we create a new request using the Request.Request() constructor (for an image file in the same directory as the script), then save the url of the request in a variable:

var myRequest = new Request('flowers.jpg');
var myURL = myRequest.url; // "http://mdn.github.io/fetch-examples/fetch-request/flowers.jpg"

Specifications

Specification Status Comment
FetchThe definition of 'url' in that specification. Living Standard Initial definition

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet

url

Experimental'

Chrome Full support 42

Notes'

Full support 42

Notes'

Notes' Fragment support added in Chrome 59.

Edge

Full support 14

Firefox Full support 39


Full support 39


Full support 34

Disabled'

Disabled' From version 34: this feature is behind the dom.fetch.enabled preference. To change preferences in Firefox, visit about:config.

IE

No support No

Opera Full support 29

Notes'

Full support 29

Notes'

Notes' Fragment support added in Opera 46.

Safari

Full support 10.1

WebView Android Full support 42

Notes'

Full support 42

Notes'

Notes' Fragment support added in Chrome 59.

Chrome Android Full support 42

Notes'

Full support 42

Notes'

Notes' Fragment support added in Chrome 59.

Firefox Android

No support No

Opera Android Full support 29

Notes'

Full support 29

Notes'

Notes' Fragment support added in Opera 46.

Safari iOS

Full support 10.3

Samsung Internet Android Full support 4.0

Notes'

Full support 4.0

Notes'

Notes' Fragment support added in Samsung Internet 7.0.

Legend

Full support  
Full support
No support  
No support
Experimental. Expect behavior to change in the future.'
Experimental. Expect behavior to change in the future.
See implementation notes.'
See implementation notes.
User must explicitly enable this feature.'
User must explicitly enable this feature.


See also