Hi All,
I want to create a slider to control the volume of the media player. How to design/create a slider using JQuery.
Geetha.
Hi All,
I want to create a slider to control the volume of the media player. How to design/create a slider using JQuery.
Geetha.
Use jQuery slider: http://docs.jquery.com/UI/Slider
To get a value, you can use:
.slider("value")
If you want to get a value when a slider changed:
$( ".selector" ).slider({
change: function(event, ui) {
// value is ui.value
}
});