# jquery-modal **Repository Path**: mirrors_fis-components/jquery-modal ## Basic Information - **Project Name**: jquery-modal - **Description**: Fork from https://github.com/kylefox/jquery-modal.git - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README A simple & lightweight method of displaying modal windows with jQuery. You probably want [a demo](http://kylefox.ca/jquery-modal/examples/index.html), don't you? # Why another modal plugin? Most plugins I've found try to do too much, and have specialized ways of handling photo galleries, iframes and video. The resulting HTML & CSS is often bloated and difficult to customize. By contrast, this plugin handles the two most common scenarios I run into * displaying an existing DOM element * loading a page with AJAX and does so with as little HTML & CSS as possible. # Installation Include [jQuery](http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js) and `jquery.modal.min.js` scripts: Include the `jquery.modal.css` stylesheet: As of version 0.3.0, jQuery 1.7 is required. If you're using an earlier version of jQuery you can use the [v.0.2.5 tag.](https://github.com/kylefox/jquery-modal/tags) # Opening **Method 1: Manually** Basic usage is to embed your modal's HTML (with the 'modal' class) directly into the document.
and then invoke `modal()` on the element. $('#login-form').modal(); You can also invoke `modal()` on links. Open modal by getting the dom id from href Open modal by making an AJAX call $(a).click(function(event) { event.preventDefault(); $(this).modal(); }); **Method 2: Automatically attaching to links** An even simpler way is to add `rel="modal:open"` to links. When the link is clicked, the link's `href` is loaded into a modal. Open an existing DOM element: Login Load a remote URL with AJAX: Login You should apply a width to all your modal elements using normal CSS. #login-form.modal { width: 400px; } The modal doesn't have a fixed height, and thus will expand & contract vertically to fit the content. # Closing Because there can be only one modal active at a single time, there's no need to select which modal to close: $.modal.close(); _TODO: this should be changed so that when called on a specific element, the element is returned (normal jQuery fashion)._ Similar to how links can be automatically bound to open modals, they can be bound to close modals using `rel="modal:close"`: Close window _(Note that modals loaded with AJAX are removed from the DOM when closed)._ # Resizing There's really no need to manually resize modals, since the default styles don't specify a fixed height; modals will expand vertically (like a normal HTML element) to fit their contents. However, when this occurs, you will probably want to at least re-center the modal in the viewport: $.modal.resize() # Options These are the supported options and their default values: $.modal.defaults = { overlay: "#000", // Overlay color opacity: 0.75, // Overlay opacity zIndex: 1, // Overlay z-index. escapeClose: true, // Allows the user to close the modal by pressing `ESC` clickClose: true, // Allows the user to close the modal by clicking the overlay closeText: 'Close', // Text content for the close tag. showClose: true, // Shows a (X) icon/link in the top-right corner modalClass: "modal", // CSS class added to the element being displayed in the modal. spinnerHtml: null, // HTML appended to the default spinner during AJAX requests. showSpinner: true // Enable/disable the default spinner during AJAX requests. }; # Events The following events are triggered on the modal element at various points in the open/close cycle (see below for AJAX events). Hopefully the names are self-explanatory. $.modal.BEFORE_BLOCK = 'modal:before-block'; $.modal.BLOCK = 'modal:block'; $.modal.BEFORE_OPEN = 'modal:before-open'; $.modal.OPEN = 'modal:open'; $.modal.BEFORE_CLOSE = 'modal:before-close'; $.modal.CLOSE = 'modal:close'; The first and only argument passed to these event handlers is the `modal` object, which has three properties: modal.elm; // Original jQuery object upon which modal() was invoked. modal.options; // Options passed to the modal. modal.blocker; // The overlay element. So, you could do something like this: $('#purchase-form').on($.modal.BEFORE_CLOSE, function(event, modal) { clear_shopping_cart(); }); # AJAX ## Basic support jQuery Modal uses $.get for basic AJAX support. A simple spinner will be displayed by default (if you've included modal.css) and will have the class `modal-spinner`. If you've set the `modalClass` option, the spinner will be prefixed with that class name instead. You can add text or additional HTML to the spinner with the `spinnerHtml` option, or disable the spinner entirely by setting `showSpinner: false`. ## Events The following events are triggered when AJAX modals are requested. $.modal.AJAX_SEND = 'modal:ajax:send'; $.modal.AJAX_SUCCESS = 'modal:ajax:success'; $.modal.AJAX_FAIL = 'modal:ajax:fail'; $.modal.AJAX_COMPLETE = 'modal:ajax:complete'; The handlers receive no arguments. The events are triggered on the `` element which initiated the AJAX modal. ## More advanced AJAX handling It's a good idea to provide more robust AJAX handling -- error handling, in particular. Instead of accommodating the myriad [`$.ajax` options](http://api.jquery.com/jQuery.ajax/) jQuery provides, jquery-modal makes it possible to directly modify the AJAX request itself. Simply bypass the default AJAX handling (i.e.: don't use `rel="modal"`) Click me! and make your AJAX request in the link's click handler. Note that you need to manually append the new HTML/modal in the `success` callback: $('a[rel="ajax:modal"]').click(function(event) { $.ajax({ url: $(this).attr('href'), success: function(newHTML, textStatus, jqXHR) { $(newHTML).appendTo('body').modal(); }, error: function(jqXHR, textStatus, errorThrown) { // Handle AJAX errors } // More AJAX customization goes here. }); return false; }); Note that the AJAX response must be wrapped in a div with classmodal when using the second (manual) method.
# Contributing
I would love help improving this plugin, particularly with:
* Performance improvements
* Making the code as concise/efficient as possible
* Bug fixes & browser compatibility
Please fork and send pull requests, or create an [issue](https://github.com/kylefox/jquery-modal/issues).
# License (MIT)
jQuery Modal is distributed under the [MIT License](Learn more at http://opensource.org/licenses/mit-license.php):
Copyright (c) 2012 Kyle Fox
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.