I have a slider and I'm manipulating it's color and gradient.
It uses mootools and everything works fine.
var inputs = document.getElementsByTagName('input');
inputs = Array.splice(inputs, 0);
inputs.forEach(function (item) {
if (item.type === 'range') {
item.onchange = function () {
value = (item.value - item.min)/(item.max - item.min)
item.style.backgroundImage = [
'-webkit-gradient(',
'linear, ',
'left top, ',
'right top, ',
'color-stop(' + value + ', #0B8CDD), ',
'color-stop(' + value + ', #898989)',
')'
].join('');
};
}
});
I want to convert the Mootools js code to Js/Jquery.
Please help me out.
Try
Use element and attribute selectors to target the
input type="range"
elements, use the change() method to register change event handler then use .css() to set the css propertiesDemo: Fiddle