$(function () { $(".open-post-form").click(function () { $("#post-form").attr("data-visible", true); return false; }); $(".close-post-form").click(function () { if (document.location.hash == "#post-form") { document.location.hash = ""; } $("#post-form").attr("data-visible", false); return false; }); });