Skip to content Skip to sidebar Skip to footer

Javascript Code For Input Range Slider Not Working In Internet Explorer 11

This is my html code And the javascript code for it is var slider = document.getElem

Solution 1:

According to caniuse (see "Known issues"), IE10 and IE11 fire change, not input, on mouse actions. So you'll need to handle change as well as input.

slider.addEventListener('input', onChange)
slider.addEventListener('change', onChange) // For IE11

Post a Comment for "Javascript Code For Input Range Slider Not Working In Internet Explorer 11"