Skip to content

Instantly share code, notes, and snippets.

@danmo91
Created October 28, 2015 23:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danmo91/642988f2e135a36f148e to your computer and use it in GitHub Desktop.
Save danmo91/642988f2e135a36f148e to your computer and use it in GitHub Desktop.
Bootstrap Dropdown
<div class="dropdown">
<button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
Missions
<span class="caret"></span>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
<!-- clicking on Missouri St. Louis takes me to the Mission action method and passes the name parameter -->
<li><a href="Mission?name=Missouri">Missouri St. Louis</a></li>
<li><a href="#">Iowa Des Moines</a></li>
<li><a href="#">California San Jose</a></li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment