jQuery UI Taskbar
HTML
<link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css">
<script src="https://github.com/cowboy/jquery-bbq/raw/v1.2.1/jquery.ba-bbq.min.js"></script>
<div class="demo">
<span id="toolbar" class="ui-widget-header ui-corner-all">
<label>go to beginning</label>
<button id="Submit">Submit</button>
</span>
</div>
CSS
#toolbar {
padding: 10px 4px;
width: 500px;
}
JavaScript
$(function() {
$( "#Submit" ).button({
});
});