Wavy Graduation Postcard
Customize × $(document).ready(function() { function on() { document.getElementById("form_modal").style.display = "block"; } function off() { document.getElementById("form_modal").style.display = "none"; } $('#modalBtn').on('click', function() { on(); $('body').addClass('over--flow'); $('.site-main').css('z-index', 'unset'); }); $('.close').on('click', function() { off(); $('body').removeClass('over--flow'); $('.site-main').css('z-index', '500'); }); $(document).mouseup(function(e) { var elem = $('.modal-content'); if (!elem.is(e.target) && elem.has(e.target).length == 0) { off(); $('body').removeClass('over--flow'); $('.site-main').css('z-index', '500'); } }); });