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 : 52.15.35.129
function GetDashboardDetails() {
var user_id = getCookie("user_id");
var parameters = "user_id=" + user_id;
$g_manage_task_table_details = "";
$g_manage_esc_table_details = "";
$.ajax({
type: "POST",
url: $host_url + "GetDashboardDetails",
data: parameters,
success: function GetDashboardDetailsSuccess(responce) {
responce = eval("(" + responce + ")");
if (responce.error_code == "0") {
$("#message_board_content").html(responce.data["univ_data"]);
$("#college_message_board").html(responce.data["college_data"]);
}
},
});
}
|