/* * SimpleModal Basic Modal Dialog * http://simplemodal.com * * Copyright (c) 2013 Eric Martin - http://ericmmartin.com * * Licensed under the MIT license: * http://www.opensource.org/licenses/mit-license.php */ jQuery(function ($) { // Load dialog on page load // $('#basic-modal-content').modal(); if($('label[name="erreur"]').length) { $('#basic-modal-content').modal(); } // Load dialog on click $('#menu .basic').click(function (e) { $('#basic-modal-content').modal(); return false; }); });