2

i am looking at firebug but i can only see two elements

how can i turn this

enter image description here

into, for example this?

enter image description here

Do i have to manually add a class or something?

this is how i init

.slider({
                    value : $(this).attr('data-value'),
                    min: 0,
                    max: 100,
                    step: 5,
                    disabled: true,
                    slide: function( event, ui ) {  }

});

1 Answer 1

2
$("#slider-range-min").slider({
    range: "min",
    value: $(this).data('value'),
    min: 1,
    max: 700,
    slide: function(event, ui) {
        ....
    }
});​

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

Sign up to request clarification or add additional context in comments.

2 Comments

thanks! with this and .ui-slider-range-min{background:black} i achieved it, maybe you want to edit and add the clasname ;)
i just wanted to show how it could done. customization is up to you :)

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.