My code so far:
swal({
title: 'Successfully Registered!',
text: "Do you want to go to the Log In page?",
type: 'success',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, send me there!'
},
function(){
window.location.href= "";
}
);
For some reason the window.location.href is not working and i tried using only location.href and if(isConfirm) etc.
What should i do?
JSFiddle:/
My code so far:
swal({
title: 'Successfully Registered!',
text: "Do you want to go to the Log In page?",
type: 'success',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, send me there!'
},
function(){
window.location.href= "http://example.";
}
);
For some reason the window.location.href is not working and i tried using only location.href and if(isConfirm) etc.
What should i do?
JSFiddle:https://jsfiddle/2dz868kd/
- 1 you should upload code to jsfiddle so user can see demo and can make changes there. – Bhaumik Pandhi Commented Apr 25, 2017 at 17:09
- 1 I did, thanks for the suggestion. – Calin Manoli Commented Apr 25, 2017 at 17:32
2 Answers
Reset to default 8Here's how you can make it with SweetAlert2:
Swal.fire({
title: 'Successfully Registered!',
text: 'Do you want to go to the Log In page?',
icon: 'success',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, send me there!'
}).then(function(result) {
if (result.isConfirmed) {
location.assign("https://stackoverflow./")
}
});
<script src="https://cdn.jsdelivr/npm/sweetalert2@11"></script>
SweetAlert2 documentation: https://sweetalert2.github.io/
Please note that SweetAlert2 and SweetAlert are two different projects. SweetAlert2 uses ES6 Promises.
This is what i use to redirect on click (OK)
<script>
sweetAlert({title: 'Error',text: 'Invalid OTP',type: 'error',onClose: function(){
window.location.href = 'https://google.';
}});
</script>