Button Javascript Methods, button('complete') - HTML CSS Bootstrap

HTML CSS examples for Bootstrap:Button

Description

Button Javascript Methods, button('complete')

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 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.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">  
$(document).ready(function(){ 
    $("#myButton").click(function(){
        $(this).button('loading').delay(1000).queue(function() {
            $(this).button('complete');
            $(this).dequeue();<!--from w  ww.ja v  a  2s .com-->
        });        
    });
});   
</script> 
  <style type="text/css">
  
</style> 
 </head> 
 <body> 
  <div> 
   <button type="button" class="btn btn-info" id="myButton" data-complete-text="Loading Completed" autocomplete="off">Click Me</button> 
  </div>   
 </body>
</html>

Related Tutorials