This is an example of a HTML5 form using the range
and output
input types.
As the user slides the range
widget, the number next to it will change. This is
becasue the form
tag's oninput
is set to "document.getElementById('rangeOutput').innerHTML =
'$' + document.getElementById('rangeEl').value"
.
Back to User Agent Man HTML5 Forms article