"Button Nav"
Bootstrap 3.1.0 Snippet by palmdeezy

<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <div class="pull-right"> <ul id="topbar"> <li><a href="#" class="btn btn-primary btn-success"><span class="glyphicon glyphicon-pencil"></span> New Asset</a></li> <li><a href="#" class="btn btn-primary btn-primary"><span class="glyphicon glyphicon-align-justify"></span> My Assets</a></li> </ul> </div> </div> </div> <div class="btn-group"> <button type="button" class="btn btn-default">Left</button> <button type="button" class="btn btn-default">Middle</button> <button type="button" class="btn btn-default">Right</button> </div>
#topbar li{ list-style:none; padding:10px; display:inline-block; } #topbar li a { }

Related: See More


Questions / Comments:

How can i add a label for the slider with <label...>

Ge Si () - 8 years ago - Reply 0


I love them only hated that you used a onchange for it, i'm using these on a website now but wanted the values to change while moving the slider.
So i wrote some custom JQuery to do this:

$('input[name="range"]').on("change mousemove", function() {
$(this).next().html($(this).val() + '%');
});

I will definitely favorite this snippet ! Thanks for building it !!!

WebVerder () - 8 years ago - Reply 0


The classic way to do this is to use "oninput" instead of "onchange".
And yes, I tried it in FF, chrome...

FrankCook () - 7 years ago - Reply 0


Looks even great in old SAFARI 5.1 !

pepperstreet () - 9 years ago - Reply 0


not working in IE latest

John Louie Binas () - 10 years ago - Reply 0


I really didn't think it would work in older versions IE, but I hoped it would have at least worked in IE11

mouse0270 () - 10 years ago - Reply 0


Works with Chrome and Safari on Mac OS X 10.9

Firefox doesn't style the actual ranges though.

cmp () - 10 years ago - Reply 0


Yeah, I tried to add the code, that was supposed to make it support Firefox, but it appears I either did it wrong or Firefox wont let me style it. :(

mouse0270 () - 10 years ago - Reply 0


it’s ::moz-range-thumb there

flying sheep () - 9 years ago - Reply 0


Those are sliders not range selectors. :) But great work!

Alex () - 10 years ago - Reply 0


I called them a range selector due to the fact this is what HTML5 calls them. Take a look at the html, the type is "range". I do understand what you mean though.

mouse0270 () - 10 years ago - Reply 0