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 : 18.117.94.221
Current Path : /var/www/oasis/js_old/ |
| Current File : /var/www/oasis/js_old/push_data_to_studentportal.js |
function CallEnablePushData() {
$("#page_main_div").load(
"../html_modules/push_data_to_studentportal.html",
function() {
document.getElementById("display_module_name").innerHTML =
"Push data to Student Portal";
document.getElementById("module_name_for_save").value =
"Push data to Student Portal";
// getDefaultHeadFooterLinks('Remove exam acknowledgement');
}
);
}
/*
This is a function to display application recieved at the university to remove acknowledgement
*/
function pushdatatostudentportal() {
$.ajax({
type: "POST",
url: $host_url + "pushdatatostudentportal.demo",
success: function($response) {
$response = eval("(" + $response + ")");
if (($response.error_code = 1)) {
alert($response.data.msg);
}
}
});
}
|