Download Demo
This jquery plugin jQuery faModal is a modal Windows Plugin, that doesn’t suck with scrollbars. It’s small and easy to modify for your project.
1. INCLUDE CSS AND JS FILES
<link rel= "stylesheet" href= "jquery.faModal.css" /> <script src= "jquery.js" ></script> <script src= "jquery.faModal.js" ></script> |
<div class = "fa-modal my-modal" > <div class = "fa-modal__close-btn" ></div> <-- modal content goes here --> </div> |
<body> <div class="fa-modal__page"> <!-- your page content here --> </div> </body>
$(document).ready( function () { $modal = $( '.my-modal' ).faModal(); $( '.btn' ).click( function () { $modal.faModal( 'show' ); }); }); |
No comments:
Post a Comment