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.145.153.251
Current Path : /var/www/html/pget/js/pg/ |
| Current File : //var/www/html/pget/js/pg/mock-seat-allotment.js |
function loadMockSeatAllotment() {
var today = new Date();
var startDate = new Date(2020,08,25);
var endDate = new Date(2020,08,25);
console.log(startDate,endDate,today);
// console.log(fappno);
if(today < startDate){
console.log("early",today,startDate);
// alert("t is big");
swal({
title: `Dates are not enabled by University`,
html: true,
showCancelButton: false,
confirmButtonColor: "#5495ff",
confirmButtonText: "OK",
closeOnConfirm: false,
});
return;
}else{
console.log('eligible',today,startDate);
// alert("start is big");
$("#loadTab").load("mock-seat-allotment.html",function(){
});
}
}
|