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.143.23.61
function collegewisedegreestatus() {
$("#page_main_div").load(
"../html_modules/college_wise_degree_status.html",
function() {
document.getElementById("display_module_name").innerHTML =
"college_wise_degree_status";
document.getElementById("module_name_for_save").value =
"college_wise_degree_status";
getDefaultHeadFooterLinks("college_wise_degree_status");
}
);
}
function Generatecollegewisedegreestatus() {
var collfrom = document.getElementById("T1").value;
var collto = document.getElementById("T2").value;
var degfrom = document.getElementById("T3").value;
var degto = document.getElementById("T4").value;
if (collfrom == "" || collto == "") {
alert("Enter the college Range");
return false;
}
if (degfrom == "" || degto == "") {
alert("Enter the Degree Range");
return false;
}
window.location.href =
$host_url +
"Generatecollegewisedegreestatus&collfrom=" +
collfrom +
"&collto=" +
collto +
"°from=" +
degfrom +
"°to=" +
degto;
}
|