(function ($, Drupal) { Drupal.behaviors.robib_solr_alterlBehavior = { attach: function (context, settings) { $('#open-modal-link', context).click(function (e) { e.preventDefault(); // Create the modal content var modalContent = ''; $('body').append(modalContent); $('#help-modal').fadeIn(); $("#open_link-wrapper").fadeOut(); $('#help-modal .close-button').click(function () { $('#help-modal').fadeOut(function () { $("#open_link-wrapper").fadeIn(); $('#help-modal').remove(); }); }); $(window).click(function (event) { if ($(event.target).is('#help-modal')) { $("#open_link-wrapper").fadeIn(); $('#help-modal').fadeOut(function () { $('#help-modal').remove(); }); } }); }); } }; })(jQuery, Drupal);