Skip to content

Instantly share code, notes, and snippets.

@robwent
Created March 9, 2017 09:12
Show Gist options
  • Save robwent/61b87148c172ba0aacee9213de88d7a2 to your computer and use it in GitHub Desktop.
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.
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