• Resolved Graicifyd

    (@graicifyd)


    I don’t know if you can help with this or not.

    I created a HTML slider using the code below:

    <div id="slider"></div>
    <script>
    var slider = document.getElementById('slider');
    noUiSlider.create(slider, {
        start: 0,
        step: 1,
        tooltips: false,
        connect: 'lower',
        range: {
            min:[559],
    			'1%':[559,1],
    			'25%':[560,60],
    			'50%':[620,55],
    			'75%':[675,75],
    			'100%':[725],max:[725]
        },
        pips: {
            mode: 'values',
            values: [559,560,620,675,725],
            density: 20 }
           
       
    });
    </script>

    I am trying to display the value in a calculated field.

    Can you help me on what to do?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @graicifyd

    You are using a third-party library to generate the slider (noUiSlider). You should contact the developers of this library to know how they manage the “slide” event. I cannot offer you support for the code of other developers. If you need me to implement your project, you should contact me through my private website. I cannot develop your project through the WordPress forum.

    Best regards.

    Thread Starter Graicifyd

    (@graicifyd)

    Alright,

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘PULL VALUE FROM AN HTML SLIDER’ is closed to new replies.