$(function () { $('.full-screen-modal-trigger').on('click', function() { $('.full-screen-modal-modal').addClass('full-screen-modal-show'); }); $('.full-screen-modal-close').on('click', function() { $('.full-screen-modal-modal').removeClass('full-screen-modal-show'); }); });