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.225.98.39
// $geditinternalcode=1;CallEnableTeacherEntry("Edit");
function CallDownloadMiscFiles(type)
{
$("#page_main_div").load('html_modules/download_misc_files.html',function()
{
document.getElementById('display_module_name').innerHTML = 'Download Files';
document.getElementById('module_name_for_save').value = 'DownloadFiles';
getDefaultHeadFooterLinks('Download Files');
DownloadMiscFiles();
});
}
function DownloadMiscFiles()
{
$.ajax({
type: "POST",
url: $host_url+"DownloadMiscFiles",
data:"id=",
success: DownloadMiscFilesSuccess
});
}
function DownloadMiscFilesSuccess($responce)
{
$responce = eval('(' + $responce + ')');
var html=$responce.data;
$("#html_data").remove();
$("#mis_files_div").append("<div id='html_data'>"+html+"</div>");
}
|