up vote 8 down vote favorite
3
share [g+] share [fb]

I need to create a custom volume slider for a WMP object. The current slider is complicated to modify, and use, is there a simple way to generate a slider on an HTML page that can have it's value passed to a javascript function?

link|improve this question

feedback

12 Answers

up vote 13 down vote accepted

jQuery UI Slider (API docs)

link|improve this answer
feedback

Yahoo UI library has also a slider control...

link|improve this answer
feedback

Here is another light JavaScript Slider that seems to fit your needs.

link|improve this answer
feedback

script.aculo.us has a slider control that might be worth checking out.

link|improve this answer
feedback

The lightweight MooTools framework has one: http://demos.mootools.net/Slider

link|improve this answer
feedback

HTML 5 with Webforms 2 provides an <input type="range"> which will make the browser generate a native slider for you. Unfortunately all browsers doesn't have support for this, however google has implemented all Webforms 2 controls with js. IIRC the js is intelligent enough to know if the browser has implemented the control, and triggers only if there is no native implementation.

From my point of view it should be considered best practice to use the browsers native controls when possible.

link|improve this answer
feedback

jQuery and Yahoo are probably the standards but I've recently found Dragdealer which looks to be very lightweight and simple to setup and re-skin...

http://code.ovidiu.ch/dragdealer/

link|improve this answer
feedback

hey i've just created my own JS slider because I had enough of the heavy Jquery UI one. Interested to hear people's thoughts. Been on it for 5 hours, so really really early stages.

jsfiddle_slider

link|improve this answer
feedback

Here is a simple slider object for easy to use

pagecolumn_webparts_sliders

link|improve this answer
feedback

It will be more professional if you use Jquery UI Slider (

but if you dont want to use jquery use this one file simple slider "CARPE Slider" or a "personal work slider from Marco Samastur(yes simple and dynamic)"

or take a look to google

link|improve this answer
feedback

I recommend Slider from Filament Group, It has very good user experience

http://www.filamentgroup.com/lab/update_jquery_ui_slider_from_a_select_element_now_with_aria_support/

link|improve this answer
feedback

The Carpe Slider has newer versions also:
v1.5 carpe_ambiprospect_slider v2.0b ...slider/drafts/v2.0/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.