From b8081db247dccd971135dd1f8432d17836dcded9 Mon Sep 17 00:00:00 2001 From: Cheng Lou Date: Wed, 18 Dec 2013 00:46:06 -0500 Subject: [PATCH] docs add input attrs for Dom Differences --- docs/ref-06-dom-differences.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/ref-06-dom-differences.md b/docs/ref-06-dom-differences.md index 5f429f96..94cfa5f3 100644 --- a/docs/ref-06-dom-differences.md +++ b/docs/ref-06-dom-differences.md @@ -13,3 +13,4 @@ React has implemented a browser-independent events and DOM system for performanc * The `style` attribute accepts a JavaScript object with camelCased properties rather than a CSS string. This is consistent with the DOM `style` JavaScript property, is more efficient, and prevents XSS security holes. * All event objects conform to the W3C spec, and all events (including submit) bubble correctly per the W3C spec. See [Event System](events.html) for more details. * The `onChange` event behaves as you would expect it to: whenever a form field is changed this event is fired rather than inconsistently on blur. We intentionally break from existing browser behavior because `onChange` is a misnomer for its behavior and React relies on this event to react to user input in real time. See [Forms](forms.html) for more details. +* Form input attributes such as `value` and `checked`, as well as `textarea`. [More here](/react/docs/forms.html).