| Server IP : 172.64.80.1 / Your IP : 172.69.17.157 Web Server : Apache System : Linux mail.federalpolyede.edu.ng 5.10.0-32-amd64 #1 SMP Debian 5.10.223-1 (2024-08-10) x86_64 User : federalpolyede.edu.ng_idh35skikv ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/federalpolyede.edu.ng/httpdocs_backup/js/ |
Upload File : |
// JavaScript Document
$(function(){
$("#school").change(function(){
($("#school").val());
$.post("../js/getDept2.php",{school:$("#school").val()},function(data){
$("#dept").html(data);
});
});
$("#math_grade").change(function(){
if ($("#math_grade").val()!= 0 && $("#english_grade").val()!= 0)
$("#subject1").attr("style","");
else
{ $("#subject1").attr("style","display:none");
$("#subject2").attr("style","display:none");
$("#subject3").attr("style","display:none");
$("#grade1").val("Select Grade");
$("#grade2").val("Select Grade");
$("#grade3").val("Select Grade");
$("#verify").attr("style","display:none");
}
});
$("#english_grade").change(function(){
if ($("#math_grade").val()!= 0 && $("#english_grade").val()!= 0)
$("#subject1").attr("style","");
else
{ $("#subject1").attr("style","display:none");
$("#subject2").attr("style","display:none");
$("#subject3").attr("style","display:none");
$("#grade1").val("Select Grade");
$("#grade2").val("Select Grade");
$("#grade3").val("Select Grade");
$("#verify").attr("style","display:none");
}
});
$("#select1").change(function(){
$("#subject2").attr("style","display:none");
$.post("../js/getsubject.php",{casse:1,subject1:$("#select1").val()},function(data){
$("#course2").html(data);
$("#subject3").attr("style","display:none");
$("#grade1").val("Select Grade");
$("#grade3").val("Select Grade");
$("#verify").attr("style","display:none");
}); });
$("#grade1").change(function(){
if ($("#grade1").val()!= 0)
$("#subject2").attr("style","");
else
$("#subject2").attr("style","display:none");
$.post("../js/getsubject.php",{casse:1,subject1:$("#select1").val()},function(data){
$("#course2").html(data);
$("#subject3").attr("style","display:none");
$("#grade3").val("Select Grade");
$("#verify").attr("style","display:none");
});
});
$("#select2").change(function(){
$("#subject3").attr("style","display:none");
$.post("../js/getsubject.php",{casse:2,subject1:$("#select1").val(),subject2:$("#select2").val()},function(data){
$("#course3").html(data);
$("#grade2").val("Select Grade");
$("#grade3").val("Select Grade");
$("#verify").attr("style","display:none");
}); });
$("#grade2").change(function(){
if ($("#grade2").val()!= 0)
$("#subject3").attr("style","");
else
$("#subject3").attr("style","display:none");
$.post("../js/getsubject.php",{casse:2,subject1:$("#select1").val(),subject2:$("#select2").val()},function(data){
$("#course3").html(data);
$("#grade3").val("Select Grade");
$("#verify").attr("style","display:none");
});
});
$("#grade3").change(function(){
if ($("#grade2").val()!= 0)
$("#verify").attr("style","");
else
$("#verify").attr("style","display:none");
});
});