Skip to content

Instantly share code, notes, and snippets.

@elpete
Forked from anonymous/index.html
Created February 24, 2016 19:44
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 elpete/718366902f0b0a2b6e41 to your computer and use it in GitHub Desktop.
Save elpete/718366902f0b0a2b6e41 to your computer and use it in GitHub Desktop.
JS Bin Quick Selection Box // source http://jsbin.com/nigaki
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Quick Selection Box">
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div class="row">
<div class="col-sm-5">
<div class="input-group">
<div class="input-group-btn">
<button
title="Quick Selections"
type="button"
class="btn btn-default dropdown-toggle"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
<i class="glyphicon glyphicon-th-list"></i>
</button>
<ul class="dropdown-menu">
<li><a href="#"><i class="glyphicon glyphicon-floppy-disk"></i>&nbsp;&nbsp;Save Quick Selection</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">My Day Shift Teams</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">My Team</a></li>
<li><a href="#">Teams I Lead</a></li>
<li><a href="#">My Value Stream</a></li>
<li><a href="#">Emblem Value Stream</a></li>
<li><a href="#">Custom Value Stream</a></li>
<li><a href="#">Distribution Value Stream</a></li>
<li><a href="#">International Value Stream</a></li>
</ul>
</div><!-- /btn-group -->
<select class="form-control" aria-label="...">
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment