Skip to content

Instantly share code, notes, and snippets.

@DoctorDerek
Created July 17, 2022 15:51
Show Gist options
  • Save DoctorDerek/eb88f83013693e04d44e55fccb92ac98 to your computer and use it in GitHub Desktop.
Save DoctorDerek/eb88f83013693e04d44e55fccb92ac98 to your computer and use it in GitHub Desktop.
How To Redirect to Another Webpage Using JavaScript To Change the URL https://medium.com/p/2b92754845a3
<!DOCTYPE html>
<html>
<head>
<title>Redirect example</title>
<meta charset="UTF-8" />
</head>
<body onLoad={window.location.replace('https://google.com')}>
Redirecting...
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment