Redirects to a specified URL.
Window.location.href
or Window.location.replace()
to redirect to url
.true
- default) or an HTTP redirect (false
).const redirect = (url, asLink = true) =>
asLink ? (window.location.href = url) : window.location.replace(url);
redirect('https://google.com');
Snippet collection
Working with URLs is an essential skill for web developers. This snippet collection covers all the necessary resources to master URLs in JavaScript.
JavaScript, Browser
Creates an object containing the parameters of the current URL.
JavaScript, Browser
Renders the given DOM tree in the specified DOM element.
JavaScript, Browser
Creates a new MutationObserver
and runs the provided callback for each mutation on the specified element.