Search code examples
javascripthtmlinternet-explorercross-browserhtml-input

Is it possible to run some HTML5 input types in IE8?


Is it possible to run some HTML5 input types in IE8 with any library??
for example with range.

Points: <input type="range" name="points" min="1" max="10">
<input type="submit" value="send">

Solution

  • You can use modernizr To check if your browser supports HTML5.
    And you could use Jquery UI Slider it work in IE8

    Check this page : http://jqueryui.com/slider/
    demo: http://jsbin.com/eduren/1/edit

    To read slider value/percentage value:
    var val = $('#slider').slider("option", "value");