by Versatility Werks http://flwebsites.biz
Simple jQuery (Modal | Popup | Lightbox | Alert) Plugin
Whether you call it a lightbox, modal, popup, or window, jAlert is an excellent replacement / alternative for Simple Modal, FancyBox, or Reveal.
Include the CSS files from the src folder in the head section:
<link rel="stylesheet" href="jAlert-master/src/jAlert-v3.css">
Include the JS file from the src folder before the </body>
:
<script src="jAlert-master/src/jAlert-v3.min.js"></script>
alert('hi'); //override is enabled by default works in code in console you get the default behavior and undefined
successAlert('Success!', 'You did it!'); //green alert
errorAlert('Error!', 'It didn\'t work!'); //red alert
infoAlert('Info!', 'Information!'); //blue alert
confirm(function(){ //override is enabled by default
console.log('confirmed!');
}, function(){
console.log('denied');
});
$.jAlert({ //this is the normal usage
'title': 'Test',
'content': 'Howdy',
'theme': 'green',
'size': 'xsm'
});
$.fn.jAlert.defaults.backgroundColor = 'white'; //override a default setting
$.fn.jAlert({ //same as $.jAlert when you're not passing an element - this alert will now have the white background color
'title': 'Test',
'content': 'Howdy',
'theme': 'green',
'size': 'xsm'
//'backgroundColor': 'white' //you could also pass it here
});
$.fn.jAlert.defaults.backgroundColor = 'black'; //set it back to black
$('.btn').alertOnClick({ //this function attaches an onclick handler to .btn and passes the options to jAlert
'title': 'It worked!',
'content': 'You clicked the button'
});
$.alertOnClick('.btn', { //this function attaches an onclick handler to the body for .btn and kicks off jAlert
'title': 'Like magic',
'content': 'You clicked the button that was dynamically added'
});
$.jAlert({ //creates a lightbox for the image - responsive and all
'image': 'http://mysite.com/my-image.jpg'
});
$.jAlert({ //creates a lightbox for the video - responsive and all
'video': 'http://youtube.com/dflskd'
});
$.jAlert({ //creates an alert that fills most of the height with a scrollable iframe
'iframe': 'http://mysite.com'
});
$.jAlert({ //gets content from another file with $.get()
'ajax': 'my-ajax-content.php'
});
jQuery 1.7+
M.I.T.
Copyright (c) 2015 Versatility Werks
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.