// JavaScript Document window.onload=function(){ $("#mask").css({ "height":$(document).height(), "width":$(document).width(), }).show(); $(".popup_content").show(); } $(function(){ $("#close").click(function(){ $(".popup_content").hide(); $("#mask").hide(); $.ajax({ type: 'POST', url: baseUrl + "/getReportRead.json?oid="+$("#reportOid").val()+"&read=yes", dataType:"json", cache: true, success: function(json){ } }); }) })