Created
July 17, 2022 15:51
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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