Stateful Buttons - HTML CSS Bootstrap

HTML CSS examples for Bootstrap:Button

Description

Stateful 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.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

  <script type="text/javascript">  
$(function() { <!--from  w  ww .j av a 2  s.  c  o 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