0xV3NOMx
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.15.142.42


Current Path : /proc/thread-self/root/var/www/html/college/js/
Upload File :
Current File : //proc/thread-self/root/var/www/html/college/js/downloadStudentPhotos.js

function CalldownloadStudentPhotos() {
  $("#page_main_div").load("../html_modules/download_photo.html", function () {
    document.getElementById("display_module_name").innerHTML = "Download Photo";
    document.getElementById("module_name_for_save").value = "Download Photo";
    clearCalldownloadStudentPhotos();
    getDefaultHeadFooterLinks("Download Photo");
  });
  // $('#module_details_div').hide();
}

function clearCalldownloadStudentPhotos() {
  $("#degree_code").val("");
  //document.getElementById('it_module').innerHTML = '';
  $("#degree_code").focus();
}

function downloadAllStudentPhotos() {
  if (trim($("#degree_code").val()) == "") {
    alert("Enter Degree Code ");
    $("#degree_code").focus();
    return;
  }
  if (trim($("#uploadPhoto_regno_start_from").val()) == "") {
    alert("Enter Register / Roll Number ");
    $("#uploadPhoto_regno_start_from").focus();
    return;
  }

  window.open(
    $host_url +
      "downloadAllStudentPhotos.demo&degreeCode=" +
      $("#degree_code").val() +
      "&regStart=" +
      $("#uploadPhoto_regno_start_from").val() +
      "&regEnd=" +
      $("#uploadPhoto_regno_end_to").val()
  );
}