I want to pass a value on changing the html slider input in AngularJs.
<input type="range" value="30" min="0" max="0" id="set-value" />
Angular function:
$scope.passValueHere = function(value) {
//TODO Here
}
I don't want to use any plugins or whatever. Just a simple answer. Thanks. :)