Bharat Soni
Bharat Soni

Reputation: 2902

small size javascript/jquery price range slider

I want to use a price range slider in my site, please suggest me a small size yet powerful slider, I've already tried

noUISlider -- did not use this one because it doesn't have percentage option, say you have a range of 0 to 100. my requirement is to reach value 50 at 75% fill.

JSSlider -- almost everything is fine in this slider but size is very big and I have to include almost 15kb of scripts and css.

JQ UI -- again I've add one more script for this.

please suggest me a good plug-in or please give me some tutorial links so that I can follow them and get to know how to create your own price slider.

Upvotes: 1

Views: 1606

Answers (1)

pawel
pawel

Reputation: 36985

Totally absolutely minimal HTML-only range slider:

<input type="range" min="0" max="100" />

And a jQuery based polyfill for browsers that don't support it yet: http://jquerytools.org/demos/rangeinput/index.html

Upvotes: 1

Related Questions