when user clicks on esc alert should not be closed he should click on pay now button to move further.
if($unpaid==true){
echo $print = '<script>
function alertOn(){
swal({
title: "No Membership Fees Received",
text: "Please pay membership fees as per your selected package",
type: "warning",
confirmButtonText: "PAY NOW"
},
function(){
window.location.href = "unpaid.php";
});
};
window.onload = alertOn
</script>';
when user clicks on esc alert should not be closed he should click on pay now button to move further.
if($unpaid==true){
echo $print = '<script>
function alertOn(){
swal({
title: "No Membership Fees Received",
text: "Please pay membership fees as per your selected package",
type: "warning",
confirmButtonText: "PAY NOW"
},
function(){
window.location.href = "unpaid.php";
});
};
window.onload = alertOn
</script>';
Share
Improve this question
edited May 12, 2016 at 14:35
Ian
30.9k20 gold badges76 silver badges112 bronze badges
asked May 12, 2016 at 13:33
vivekvivek
411 gold badge1 silver badge7 bronze badges
1
- is there anyone with solution – vivek Commented May 12, 2016 at 13:38
3 Answers
Reset to default 9Yes, you can configure the swal
function by modifying allowEscapeKey
and allowOutsideClick
properties to false
like:
swal({
title: 'title',
text: 'your text',
showConfirmButton: true,
allowEscapeKey : false,
allowOutsideClick: false
});
I think for this version you can use this:
swal({
title: 'title',
text: 'your text',
button: false,
closeOnClickOutside: false,
closeOnEsc: false
});
if ($unpaid == true) {
echo $print1 = '<script>
function alertOn(){
swal({
title: "No Membership Fees Received",
text: "Please pay membership fees as per your selected package",
type: "warning",
confirmButtonText: "PAY NOW",
**allowEscapeKey:false**
},
function(){
window.location.href = "unpaid.php";
});
};
window.onload = alertOn;
</script>';
}