Dropdown Methods dropdown('toggle') - HTML CSS Bootstrap

HTML CSS examples for Bootstrap:Dropdown

Description

Dropdown Methods dropdown('toggle')

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 Dropdown 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(){
  $(".dropdown-toggle").dropdown('toggle');
});  <!--from   ww w  .jav a2 s  .  c o m-->
</script> 
  <style type="text/css">
  
</style> 
 </head> 
 <body> 
  <div> 
   <div class="dropdown"> 
    <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a> 
    <ul class="dropdown-menu"> 
     <li><a href="#">Action</a></li> 
     <li><a href="#">Another action</a></li> 
     <li class="divider"></li> 
     <li><a href="#">Separated link</a></li> 
    </ul> 
   </div> 
  </div>   
 </body>
</html>

Related Tutorials