Easy-to-use dialog system for modern web-apps.
basicModal is a dialog-system for modern web-apps. It includes everything you need to display information, ask questions or request input from the user. Modals can be chained, so you can easily build a setup-assistant or show dialogs in a predefined order. Invalid input can be highlighted and handled using the included function.
basicModal uses SASS, CoffeeScript, CSS3 Flexbox and only requires jQuery on your website.
Tested with the latest versions of Mozilla Firefox, Apple Safari, Google Chrome, Microsoft Internet Explorer (10+) and Opera.
We recommend to install basicModall using Bower.
bower install basicModal --save
basicModal requires jQuery >= 2.1.0
bower install jquery --save
Include the CSS file in the head and the JS file at the end of your body. Make sure you include jQuery before the JS file of basicModal.
<head>
<link type="text/css" rel="stylesheet" href="bower_components/basicModal/dist/basicModal.min.css">
</head>
<body>
<script src="bower_components/jQuery/dist/jquery.min.js"></script>
<script src="bower_components/basicModal/dist/basicModal.min.js"></script>
</body>You can find a list of avilable functions on our site.