/home/techb158/exp.abdallabala.com/ui/theme/ibilling/lib
Edit: /home/techb158/exp.abdallabala.com/ui/theme/ibilling/lib/pg.js (1358B)
$(document).ready(function () {
$("#emsg").hide();
$("#submit").click(function (e) {
e.preventDefault();
$('#ibox_form').block({ message: null });
var _url = $("#_url").val();
$.post(_url + 'settings/pg-post/', {
name: $('#name').val(),
settings: $('#settings').val(),
pgid: $('#pgid').val(),
value: $('#value').val(),
status: $('#status').val(),
c1: $('#c1').val(),
c2: $('#c2').val(),
c3: $('#c3').val(),
c4: $('#c4').val(),
c5: $('#c5').val(),
mode: $('#mode').val()
})
.done(function (data) {
setTimeout(function () {
var sbutton = $("#submit");
var _url = $("#_url").val();
if ($.isNumeric(data)) {
location.reload();
}
else {
$('#ibox_form').unblock();
var body = $("html, body");
body.animate({scrollTop:0}, '1000', 'swing');
$("#emsgbody").html(data);
$("#emsg").show("slow");
}
}, 2000);
});
});
});