I am new to HTML and Angular. This might be simple basic question. I am trying to use the basic dropdown button. in this example.
http://jsfiddle.net/xkL15guj/
I am trying to use the same example in plunkr. However, when I am trying to add the files bootstrap.min.js, I am unable to add. Can you help me understand what mistake I am doing here.
https://plnkr.co/edit/YfgD9G?
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet"/>
<div class="btn-group">
<button type="button" class="btn btn-danger">Action</button>
<button type="button" class="btn btn-danger dropdown-toggle" data-toggle="dropdown">
<span class="caret"></span>
<span class="sr-only">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
Thank you.