I'm looking for a JavaScript control that is a Range Slider (dual knob) that:

  • does NOT use an existing JS framework (e.g. dojo, jquery, etc) - unless you can roll/create your own sub framework where I can compile in just the components I need.
  • works in all major browsers

An example a Range Slider is below, but of course this uses JQuery - so this is not an option because even if I built JQuery only including the components I need (JQuery UI core + Slider) it's 140kb MINIFIED:

http://jqueryui.com/demos/slider/#range

link|improve this question
4  
Why the requirement that it not use a framework? "Works in all major browsers" is the primary reason frameworks exist. – Ben Blank May 18 '09 at 16:23
@Ben Blank - I'm from the school of thought that you shouldn't require a user to download code that they won't use. If I used a JS framework, probably 90% of the framework would go unused. So if the JS framework can be used to "roll/create" your own sub-framework where it only includes the exact components needed - that would work – Hank892 May 18 '09 at 17:05
@Hank892 the problem with that logic, which there is nothing wrong with, but in this case what you are asking is a complex UI function in JS, that is going to require a lot of foundation work to have it work correctly. So you are guaranteed extra JS unless you roll your own for this specific case. – Nick Berardi Jun 10 '09 at 17:03
feedback

5 Answers

jQuery UI has a nice one:

http://jqueryui.com/demos/slider/

link|improve this answer
4  
You didn't dig very deep. :) It is a multi slider, jqueryui.com/demos/slider/#range, too. These are very complex so you are going to find it problematic to find one that doesn't leverage a current framework. Yahoo has one, ExtJS has one, jQuery has one, but they are all built off the core UX framework in each JS Framework. – Nick Berardi May 18 '09 at 12:50
3  
You can try Yahoo or ExtJS which weight in at the same or more. If you are worried about size, just make sure it is cached properly so they only have to download it once. Use your own CDN or Google's code.google.com/apis/ajaxlibs/documentation to make sure that everything is coming through correctly. – Nick Berardi May 18 '09 at 13:08
3  
Your Javascript doesn't have to block HTML rendering. You can simply put the script tags at the bottom of the page and it won't try loading them until then. Wherever the slider is meant to go on the page can just be disabled until the Javascript loads. This is 2009, 75kb for what you want is not bad. – Paolo Bergantino May 18 '09 at 16:16
3  
@Hank892 — I have to say, this sounds a bit like premature optimization. Not only is 75k really too little to be worried about (most pages' images are several times that much), but if you use major CDN (or Google APIs), users won't even have to download the 75k; they're practically guaranteed to have a copy cached already. – Ben Blank May 18 '09 at 16:27
2  
jQuery UI allows you to configure the code. jqueryui.com/download You're giving yourself a silly false constraint, especially if you use a Google API or CDN. Their prevalence means your users have already downloaded the code elsewhere. So why not use it? Rolling your own would just require the user to download MORE code on top of what they already have. – Mark Hurd May 18 '09 at 18:49
show 10 more comments
feedback

YUI 3 (which is currently in preview release) only pulls in the absolute minimum amount of code required to do what you ask. Their basic slider example (http://developer.yahoo.com/yui/3/examples/slider/slider_basic_clean.html) only pulls in 24k of JavaScript and less than 1k of CSS. It's pretty slick.

disclosure: I work for Yahoo!.

link|improve this answer
feedback

I just stumbled upon this ranged slider today. I haven't used it, but it looks like they have a strong focus on accessibility which may or may not be important to you. Seems to work pretty well, though.

http://www.paciellogroup.com/blog/misc/samples/aria/slider/doubleslider.html

link|improve this answer
feedback

Use the slider code from http://www.walterzorn.com/dragdrop/dragdrop_e.htm#addons. It's a single handle but the underlying drag-drop.js is very flexible. You just need to add your own second slider and programmatically lock each bars' min-max range based on the position of the other. You're looking at 1 12kb (lgpl'ed) script include and about 10-20 lines of code to implement this.

link|improve this answer
feedback

@Potch

That's pretty slick.

However, does YUI 3 support a dual handle slider? Your link appears to be just for a single handle slider.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown