Welcome to the staging ground for new communities! Each proposal has a description in the "Descriptions" category and a body of questions and answers in "Incubator Q&A". You can ask questions (and get answers, we hope!) right away, and start new proposals.
Are you here to participate in a specific proposal? Click on the proposal tag (with the dark outline) to see only posts about that proposal and not all of the others that are in progress. Tags are at the bottom of each post.
Post History
There's a number of ways to send the user to another URL in JS (from [1]): // Simulate a mouse click: window.location.href = "http://www.w3schools.com"; // Simulate an HTTP redirect: window.l...
Answer
#1: Initial revision
There's a number of ways to send the user to another URL in JS (from [[1](https://www.w3schools.com/howto/howto_js_redirect_webpage.asp)]): ``` // Simulate a mouse click: window.location.href = "http://www.w3schools.com"; // Simulate an HTTP redirect: window.location.replace("http://www.w3schools.com"); ``` However, this is pretty janky. I'd suggest reconsidering your host of choice, to avoid having to do such tricks :) For one, this is an abuse of HTTP because you are not issuing a 301.