So I’m new to JS, and I wanna redirect the user to another page…
My code:
JavaScript
x
14
14
1
// Below function Executes on click of login button.
2
function validate() {
3
redirectTo =
4
window.location.protocol + window.location.host + "/dashboard.html";
5
var username = document.getElementById("userName").value;
6
var password = document.getElementById("passWord").value;
7
if (username == "admin" && password == "password") {
8
window.location = redirectTo; // Redirecting to other page.
9
return false;
10
} else {
11
alert("NANI!!!");
12
}
13
}
14
I know this is not a secure way to auth, but relax it’s just a portfolio project
Advertisement
Answer
You should append the ‘//’ after window.location.protocol
which mentioned by @Vasan.
Using ES6 template strings would make it clear.
JavaScript
1
12
12
1
function validate() {
2
const redirectTo = `${window.location.protocol}//${window.location.host}/dashboard.html`;
3
const username = document.getElementById('userName').value;
4
const password = document.getElementById('passWord').value;
5
if (username === 'admin' && password === 'password') {
6
window.location = redirectTo; // Redirecting to other page.
7
return false;
8
} else {
9
alert('NANI!!!');
10
}
11
}
12