Skip to content

Commit

Permalink
Fixed text in the range explanation to be more accurate.
Browse files Browse the repository at this point in the history
Change-Id: Ia36ba583e2f19769c30643012705d67e6b48c15e
  • Loading branch information
zoltan-dulac committed May 12, 2011
1 parent 022af58 commit 2c36a95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/html5Widgets/range.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
<p>
This is an example of a HTML5 form using the <code>range</code> and <code>output</code> input types.
As the user slides the <code>range</code> widget, the number next to it will change. This is
becasue the <code>form</code> tags's <code>oninput</code> is set to <code>"this.value = rangeEl.value"</code>.
becasue the <code>form</code> tag's <code>oninput</code> is set to <code>"document.getElementById('rangeOutput').innerHTML =
'$' + document.getElementById('rangeEl').value"</code>.

<a href="http://www.useragentman.com/blog/?p=1110">Back to User Agent Man HTML5 Forms article </a>
</p>
Expand Down

0 comments on commit 2c36a95

Please sign in to comment.