Hello I got a rather simple question. I use the HTML5 range slider type: <input type="range">
and I want to trigger it via jQuery.
I used the following code:
$("form input:range").each(function () {
// Do something
});
For some reason I get the following error:
! Uncaught Error: Syntax error, unrecognized expression: unsupported pseudo: range
Perhaps important: I use jquery-1.12.1.min.js.
Does anyone now why this is and how I could solve this?