Hey having a little trouble jquery and the hmtl5 range. I\'m try to get the values as they changed but the event listener is not capturing it. Currently my code is:
HTML
The on change event seems to be working correctly for me: http://jsfiddle.net/zV3xD/7/
0
$('#discount_credits').change( function() {
var newValue = this.value;
$('#newValue').html(newValue);
});
Or you can try something like this:
Using the output
example here: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output