The redirect read-only property of the Request interface contains the mode for how redirects are handled.
Syntax
var myRedirect = request.redirect;
Value
A RequestRedirect enum value, which can be one the following strings:
followerrormanual
If not specified when the request is created, it takes the default value of follow.
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 request redirect value in a variable:
var myRequest = new Request('flowers.jpg');
var myCred = myRequest.redirect;
Specifications
| Specification | Status | Comment |
|---|---|---|
| Fetch The definition of 'redirect' in that specification. |
Living Standard | Initial definition |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
redirect | Chrome Full support 46 | Edge Full support 14 | Firefox Full support Yes | IE No support No | Opera Full support Yes | Safari No support No | WebView Android No support No | Chrome Android Full support 46 | Firefox Android Full support Yes | Opera Android Full support Yes | Safari iOS No support No | Samsung Internet Android Full support 5.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.
