Download
User Rating: 3.6/5 ( 1 votes)
asModal is a lightweight jQuery plugin that help create a modal dialog.
Source: github.com
1. INCLUDE JS FILES
<script src="jquery.js"></script>
<script src="dist/jquery-asModal.min.js"></script>
2. HTML
<button href=".register_form" class="form">Login</button>
<div class="register_form">
<form action="#" method="post">
<header><h4>Login</h4></header>
<ul>
<li>
<label for="username">Username:</label>
<input id="username" type="text" name="username" />
</li>
<li>
<label for="password">Password:</label>
<input id="password" type="text" name="password" />
</li>
</ul>
<footer>
<button>Submit</button>
</footer>
</form>
</div>
3. JAVASCRIPT
$(document).ready(function() {
$('.form').asModal();
});