HTML CSS examples for Bootstrap:Button
When loading, the button is disabled and the text is swapped with the value of "data-loading-text" attribute of button element.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Example of Bootstrap 3 Button Methods</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#myButtons .btn").click(function(){ $(this).button('loading').delay(1000).queue(function(){ $(this).button('reset'); $(this).dequeue();<!--from w ww . ja va2s. c o m--> }); }); }); </script> <style type="text/css"> </style> </head> <body> <div id="myButtons" class="bs-example"> <form action="#" autocomplete="off"> <button type="button" class="btn btn-default">Default</button> <button type="button" class="btn btn-primary">Primary</button> <button type="button" class="btn btn-success">Success</button> <button type="button" class="btn btn-info">Info</button> <button type="button" class="btn btn-warning">Warning</button> <button type="button" class="btn btn-danger">Danger</button> </form> </div> </body> </html>