I Want JavaScript To Redirect - Not Working

also… why would your page have lots of javascript files and a lot of javascript, if all you want the page to do is redirect?
Your entire page should be like…

<html>
<body>
<script>
window.location.replace("go here");
</script>
</body>
</html>

?

3 Likes