Last active
December 14, 2016 21:38
-
-
Save gitaeks/b95a0a6dcd97645ad78b441a35580ad6 to your computer and use it in GitHub Desktop.
ecobank desktop loader - isLoading
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p id="basic" class="text-xs-center"> | |
| <button type="button" class="btn btn-secondary">전송</button> | |
| </p> | |
| <!-- http://hekigan.github.io/is-loading/ --> | |
| <script src="./assets/extensions/is-loading/1.0.6/jquery.isloading.js"></script> | |
| <script> | |
| $(function() { | |
| $("#basic .btn").click(function() { | |
| $(this).isLoading(); | |
| // Data Loaded, re-enable event | |
| setTimeout( function(){ | |
| $("#basic .btn").isLoading("hide"); | |
| }, 1000 ); | |
| }); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment