Created
March 9, 2017 09:12
-
-
Save robwent/61b87148c172ba0aacee9213de88d7a2 to your computer and use it in GitHub Desktop.
Move all divs with a class of modal to the bottom of the page to prevent issues with modals in relative elements showing behind the overlay.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function(){ | |
jQuery("div.modal").each(function(){ | |
jQuery('body').append($(this)); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment