Modal Popup Only once per session
问题 How to show this Dialog Popup one time per session, I see cookies configuration but I could not apply it to this case: $(document).ready(function() { ShowDialog(true); e.preventDefault(); }); $("#btnClose").click(function(e) { HideDialog(); e.preventDefault(); }); function ShowDialog(modal) { $("#overlay").show(); $("#dialog").fadeIn(300); if (modal) { $("#overlay").unbind("click"); } else { $("#overlay").click(function(e) { HideDialog(); }); } } function HideDialog() { $("#overlay").hide();