| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/patratravelsonline.com/public/assets/js_new/ |
Upload File : |
$(document).ready(function () {
//basic pop-up
$('#open-pop-up-1').click(function(e) {
e.preventDefault();
$('#pop-up-1').popUpWindow({action: "open"});
});
//Buttons pop-up
$('#open-pop-up-2').click(function (e) {
e.preventDefault();
$('#pop-up-2').popUpWindow({
action: "open",
buttons: [{
text: "Search Hotel",
click: function () {
this.close();
}
}, {
text: "No",
click: function () {
this.close();
}
}]
});
});
//Custom buttons popup
$('#open-pop-up-3').click(function (e) {
e.preventDefault();
$('#pop-up-3').popUpWindow({
action: "open",
buttons: [{
text: "Yes",
cssClass: "btn-yes",
click: function () {
this.close();
}
}, {
text: "No",
cssClass: "btn-no",
click: function () {
this.close();
}
}]
});
});
//On close callback
$('#open-pop-up-4').click(function (e) {
e.preventDefault();
$('#pop-up-4').popUpWindow({
action: "open",
onClose: function(){
alert('Window Closed');
}
});
});
//advanced modal popup
$('#open-pop-up-5').click(function (e) {
e.preventDefault();
$('#pop-up-5').popUpWindow({
action: "open",
modal: true,
onClose: function () {
alert('Window Closed');
},
buttons: [{
text: "Yes",
click: function () {
alert('Yes clicked');
this.close();
}
}]
});
});
//small size popup
$('#open-pop-up-6').click(function (e) {
e.preventDefault();
$('#pop-up-6').popUpWindow({
action: "open",
size: "small"
});
});
//medium size popup
$('#open-pop-up-7').click(function (e) {
e.preventDefault();
$('#pop-up-7').popUpWindow({
action: "open",
size: "medium"
});
});
});