https://www.dropbox.com/s/mfrmk8imwssqvu2/Screenshot%202015-08-20%2021.19.53.png?dl=0
I want to achieve the result given in this link. It is a 'Select' dropdown. How can I do that ? I have searched for it but couldn't find any solution.
https://www.dropbox.com/s/mfrmk8imwssqvu2/Screenshot%202015-08-20%2021.19.53.png?dl=0
I want to achieve the result given in this link. It is a 'Select' dropdown. How can I do that ? I have searched for it but couldn't find any solution.
use bootstrap dropdown for reference
Include bootstrap libraries
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<div class="dropdown">
<button id="dLabel" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Dropdown trigger
<span class="caret"></span>
</button>
<ul class="dropdown-menu" aria-labelledby="dLabel">
// your content
</ul>
</div>