|
Manage Owner Message
';
$('#listMenu').html(tmp);
}
function checkSession() {
$.ajax({
cache: false,
type: 'POST',
url: "/StreamingStorageNew/ManageUserSessionServlet",
dataType: "JSON",
beforeSend: function () {
}, success: function (data) {
if (!data.status) {
clearInterval(refreshID);
alert("Time out กรุณาเข้าระบบใหม่อีกครั้ง");
window.location = "/StreamingStorageNew/login/index.jsp";
}
}
});
}
function displayRow() {
$("#hiddenMenuLeft").html(" ");
$("#menuRow").show();
}
function hideRow() {
$("#hiddenMenuLeft").html(" ");
$("#menuRow").hide();
}
|
|
|
|