Add Loading State on Buttons - HTML CSS Bootstrap

HTML CSS examples for Bootstrap:Button

Description

Add Loading State on Buttons

Demo Code

ResultView the demo in separate window

<!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 Stateful Buttons</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">
$(function() {<!--   ww  w.j a v  a  2 s  .  co  m-->
    $(".btn").click(function(){
        $(this).button('loading').delay(1000).queue(function() {
            $(this).button('reset');
            $(this).dequeue();
        });
    });
});
</script>
 </head>
 <body>
  <div>
   <button type="button" class="btn btn-default" data-loading-text="Loading ...">Default</button>
   <button type="button" class="btn btn-primary" data-loading-text="Loading...">Primary</button>
   <button type="button" class="btn btn-info" data-loading-text="Loading...">Info</button>
   <button type="button" class="btn btn-success" data-loading-text="Loading...">Success</button>
   <button type="button" class="btn btn-warning" data-loading-text="Loading...">Warning</button>
   <button type="button" class="btn btn-danger" data-loading-text="Loading...">Danger</button>
   <button type="button" class="btn btn-link" data-loading-text="Loading...">Link</button>
  </div>
 </body>
</html>

Related Tutorials