This library includes 6 components:
popModal - popup window, displayed near the parent element. Invoked by clicking on an element
notifyModal - notification popup, displayed on top of all elements. Invoked by event and hide after a certain time
hintModal - tooltip, displayed near the parent element. Invoked on mouse hover on an element and hide after element lost focus
dialogModal - modal dialog for big content or collection of content, displayed on top of all elements. Invoked by clicking on an element
titleModal - tooltip, displayed near the parent element, replace native title. Invoked on mouse hover on an element and hide after element lost focus
confirmModal - modal dialog for alert or confirm content, displayed on top of all elements. Invoked by clicking on an element
For work required only jQuery, other libraries are not required.
popModal.min.js [16.8Kb]
popModal.css [16.1Kb]
popModal.min.css [15.1Kb]
$(el).popModal({param1 : value1, param2 : value2, ...});
html
- static html, dinamic html, string, function (object, string, function). Use function if you want load content via ajax.Use:
el.append(html)
, $(el).html()
, 'text'
or function(){}
placement
- popup position (string).Use:
'bottomLeft'
- default, 'bottomCenter'
, 'bottomRight'
, 'leftTop'
, 'leftCenter'
, 'rightTop'
, 'rightCenter'
showCloseBut
- show/hide close button on popup (boolean).Use:
true
- default, false
onDocumentClickClose
- close popup when click on any place (boolean).Use:
true
- default, false
onDocumentClickClosePrevent
- prevent close popup when click on specified elements (string).Use:
el
or '.el'
overflowContent
- overflow content (boolean).Use:
false
- default, true
inline
- create popup relative element (boolean).Use:
true
- default, false
asMenu
- use popup for show as dropdown menu (boolean).Use:
false
- default, true
beforeLoadingContent
- show text, before loading content (string).Use:
'Please, waiting...'
- defaultonOkBut
- code execution by clicking on OK button, contained in popup (function).Use:
function(){}
.For work you need put an attribute to element -
data-popmodal-but="ok"
. Popup will close automaticallyonCancelBut
- code execution by clicking on Cancel button, contained in popup (function).Use:
function(){}
.For work you need put an attribute to element -
data-popmodal-but="cancel"
. Popup will close automaticallyonLoad
- code execution before popup shows (function).Use:
function(){}
onClose
- code execution after popup closed (function).Use:
function(){}
hide
- for close popModal.Use:
$('html').popModal("hide");
You may use external click function for element
$(el).click(function(){ $(el).popModal({param1 : value1, param2 : value2, ...}); });Use this, for immediately run popModal
$(el).popModal({param1 : value1, param2 : value2, ...});
Also you may use inline bind
<button id="elem" data-popmodal-bind="#content" data-placement="bottomLeft" data-showclose-but="true" data-inline="true" data-overflowcontent="false" data-ondocumentclick-close="true" data-ondocumentclick-close-prevent="e">example</button>
Popup is dynamically created. When you create the second popup, the first will be deleted!
For create footer in popup, use element div with class="popModal_footer"
. You can use attribute for element data-popmodal-but="close"
for close popup, also you can press ESC, or click on any place.
$(content).notifyModal({param1 : value1, param2 : value2, ...});
duration
- duration for show notification in ms (integer)Use:
2500
- default, -1
for infinityplacement
- position (string).Use:
'center'
- default, 'leftTop'
, 'centerTop'
, 'rightTop'
, 'leftBottom'
, 'centerBottom'
, 'rightBottom'
, 'centerTopSlide'
, 'centerBottomSlide'
, 'leftTopSlide'
, 'leftBottomSlide'
, 'rightTopSlide'
, 'rightBottomSlide
type
- visual style (string).Use:
'notify'
- default, 'alert'
, 'simple'
, 'dark'
overlay
- show notification popup on top of the content (boolean).Use:
true
- default, false
onClose
- code execution after popup closed (function).Use:
function(){}
You can close this notification popup, by clicking on any place, close button or press ESC.
$('.hintModal').hintModal();
Use: You need to create html with class="hintModal"
as parent element and put in this element div with class="hintModal_container"
, put here html, to be displayed.
To change position, add additional class class="hintModal_center"
or class="hintModal_right"
to parent element.
$(content).dialogModal({param1 : value1, param2 : value2, ...});
topOffset
- top offset in px for dialog, useful if some elements on page have position: fixed (integer).Use:
0
.top
- top offset for dialog, uses for type:'modal'
(string).Use:
'10%'
- default.type
- type of dialog (string).Use:
''
- default, 'modal'
to show dialog not from top.onOkBut
- code execution by clicking on OK button, contained in dialog (function).Use:
function(){}
.For work you need put an attribute to element -
data-dialogmodal-but="ok"
. Dialog will close automaticallyonCancelBut
- code execution by clicking on Cancel button, contained in dialog (function).Use:
function(){}
.For work you need put an attribute to element -
data-dialogmodal-but="cancel"
. Dialog will close automaticallyonLoad
- code execution before dialog shows (function).Use:
function(el, current){}
You can use parameters
el
and current
for example to change html.onClose
- code execution after dialog closed (function).Use:
function(){}
onChange
- code execution after dialog page change (function).Use:
function(el, current){}
You can use parameters
el
and current
for example to change html.hide
- for close dialogModal.Use:
$('html').dialogModal("hide");
You may use external click function for element
$(el).click(function(){ $(content).dialogModal({param1 : value1, param2 : value2, ...}); });or use
$(content).dialogModal({param1 : value1, param2 : value2, ...});
Dialog is dynamically created. When you create the second dialog, the first will be deleted!
You need to create div elements with classes class="dialogModal_header"
- for show header,
class="dialogModal_content"
- for show content, and class="dialogModal_footer"
- for show footer.
You can use attribute for element data-dialogmodal-but="close"
for close dialog, also you can press ESC.
To show collection of content, like pages in one modal dialog, use class for this dialogs.
If you want to use collection of content, you can change content by clicking to arrows, or press left/right arrow on keayboard, or use attributes data-dialogmodal-but="prev"
and data-dialogmodal-but="prev"
.
$('.titleModal').titleModal();
Use: You need to put attribute title and class="titleModal"
.
titleModal will show by default at the bottom, to change position, put attribute data-placement="top"
. You can use top
, left
or right
.
You can use another style for titleModal, add
class="light"
to element.
$(content).confirmModal({param1 : value1, param2 : value2, ...});
topOffset
- top offset in px for dialog, useful if some elements on page have position: fixed (integer).Use:
0
.onOkBut
- code execution by clicking on OK button, contained in dialog (function).Use:
function(){}
.For work you need put an attribute to element -
data-confirmmodal-but="ok"
. Dialog will close automaticallyonCancelBut
- code execution by clicking on Cancel button, contained in dialog (function).Use:
function(){}
.For work you need put an attribute to element -
data-confirmmodal-but="cancel"
. Dialog will close automaticallyonLoad
- code execution before dialog shows (function).Use:
function(){}
onClose
- code execution after dialog closed (function).Use:
function(){}
hide
- for close confirmModal.Use:
$('html').confirmModal("hide");
You may use external click function for element
$(el).click(function(){ $(content).confirmModal({param1 : value1, param2 : value2, ...}); });or use
$(content).confirmModal({param1 : value1, param2 : value2, ...});
Dialog is dynamically created. When you create the second dialog, the first will be deleted!
You need to create div elements with classes class="confirmModal_content"
- for show content, and class="confirmModal_footer"
- for show footer.
You can use attribute for element data-confirmmodal-but="close"
for close dialog.
$(el).popModal({ html : $(content).html(), placement : 'bottomLeft', showCloseBut : true, onDocumentClickClose : true, onDocumentClickClosePrevent : '', overflowContent : false, inline : true, asMenu : false, beforeLoadingContent : 'Please, waiting...', onOkBut : function(){}, onCancelBut : function(){}, onLoad : function(){}, onClose : function(){} });
$(el).popModal({ html : function(callback) { $.ajax({url:'ajax.html'}).done(function(content){ callback(content); }); } });
$(content).notifyModal({ duration : 2500, placement : 'center', type : 'notify', overlay : true });
<div class="hintModal"> hover on me <div class="hintModal_container"> text for hintModal </div> </div>
$(content).dialogModal({});
<div title="Title text" class="titleModal light" data-placement="bottom">Text</div>
$(content).confirmModal({});
The MIT License (MIT)