Return value in input noUiSlider

0

I need to insert a price range on a form, I'm using noUiSlider noUiSlider with Jquery, it's working, but I can not get the values, can anyone give me a hand?

Example

 $("#slider-start").noUiSlider({
        start: [1000, 30000],
        range: {
            'min': [0],
            'max': [30000]
        }
    });
    
asked by anonymous 18.05.2017 / 19:52

1 answer

0

There is an example in the plugin's documentation on how to capture the value link

alert( slider.noUiSlider.get() );
    
18.05.2017 / 20:09