Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.141.25.125
function CallEnableRemoveAck() {
$("#page_main_div").load("../html_modules/remove_exam_ack.html", function () {
document.getElementById("display_module_name").innerHTML =
"Remove Exam Acknowledgement";
document.getElementById("module_name_for_save").value =
"Remove exam acknowledgement";
getDefaultHeadFooterLinks("Remove exam acknowledgement");
});
}
/*
This is a function to display application recieved at the university to remove acknowledgement
*/
function RemoveExamAck() {
var appno = $("#remove_ack_app_no").val();
if (appno == "") {
alert("Enter Application Number");
$("#remove_ack_app_no").focus();
return;
}
var fflag = "F";
if (document.getElementById("fflag").checked == true) fflag = "T";
$.ajax({
type: "POST",
url: $host_url + "RemoveExamAck",
data: "fappno=" + appno + "&fflag=" + fflag,
success: function (responce) {
responce = eval("(" + responce + ")");
if (responce.error_code == 0) {
alert(responce.data.msg);
} else {
alert(responce.data.msg);
}
},
});
}
|