How can I redirect the user from one page to another using JavaScript
How can I redirect the user from one page to another using JavaScript
1 Answer
You can redirect from one page to another in JavaScript
using window.location.replace("")
Example
window.location.replace("https://www.qandeelacademy.com/");
answer Link