Files
30-seconds-of-code/snippets/js/s/redirect-to-url.md
Angelos Chalaris 9d032ce05e Rename js snippets
2023-05-19 20:23:47 +03:00

530 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Redirect to URL snippet javascript
browser
coffee-phone-tray-2 2020-10-20T11:46:23+03:00

Redirects to a specified URL.

  • Use Window.location.href or Window.location.replace() to redirect to url.
  • Pass a second argument to simulate a link click (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');