I am trying to send a user to another page using a Javascript Function:
<input type="button" name="confirm" value="nextpage" onClick="message()">
And my JavaScript:
function message() {
ConfirmStatus = confirm("Install a Virus?");
if (ConfirmStatus == true) {
//Send user to another page
}
}
Does anyone know how to send a user to another specific page?