I want to disable track click on input type range, Only allow drag through thumb.
I am able to do it in all browsers except Microsoft Edge and Internet Explorer.
using jquery to disable
$("input[name=Range]").css("pointer-events","none"); $("input[name=Range]").css("disabled","disabled");
to normal
$("input[name=Range]").css("pointer-events","auto"); $("input[name=amountRange]").removeAttr("disabled");