You must Sign In to post a response.
  • Category: ASP.NET

    Need Slider Scroll Bar

    Hi

    I want a Slider Scroll Bar move in horizontally with 10 interval min value 100 and max value 500. Every change of scroller value another value get from database and that value display on label.
  • #767580

    Delete Attachment

  • #767601
    Hi,
    Use jQuery Silder.

    <html>
    <head>
    <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
    <script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script>
    <script>
    $( function() {
    $( "#Div" ).slider();
    } );
    </script>
    </head>
    <body>
    <div id="sliderDiv"></div>
    </body>
    </html>


    Please find demo over here:
    https://jqueryui.com/slider/

  • #767701
    Hai Gaurav,
    There is builtin JQuery library for the slider where you can include in to your application and make use of the library to use its function to provide the minimum values and maximum values.
    You can see the details of methods, properties of the slider at the below site:

    https://jqueryui.com/slider/

    Hope it will be helpful to you.

    Regards,
    Pawan Awasthi(DNS MVM)
    +91 8123489140 (whatsApp), +60 14365 1476(Malaysia)
    pawansoftit@gmail.com


  • Sign In to post your comments