I have a html5 range input and a text box input. When the range changes, the text box will get updated. But what should I do so that when I put a number in the text box, the ran
$('#box').change(function(){ $('#slider').attr({"value":parseInt(this.value)}); });
Might work.