Skip to content

Instantly share code, notes, and snippets.

@alecpm
alecpm / modal_dialogs.js
Created April 13, 2019 17:06
Example of modal dialogs with focus trapping
jQuery(function($) {
var $current_dialog;
var $current_trigger;
var open_dialog = function ($dialog, $trigger) {
// Close any open dialogs except main nav, which stays open
// behind other dialogs
if ($current_dialog && !$current_dialog.is('#main-navigation')) {
close_dialog();
}