Short URL: http://html5.org/r/3856
| SVN | Bug | Comment | Time (UTC) |
|---|---|---|---|
| 3856 | Elaborate on <noscript> example. | 2009-09-15 08:22 |
Index: source
===================================================================
--- source (revision 3855)
+++ source (revision 3856)
@@ -13425,9 +13425,7 @@
historical reasons, the <code>noscript</code> element is handled
differently by the <span>HTML parser</span> based on whether <span
title="scripting flag">scripting was enabled or not</span> when the
- parser was invoked. The element is not allowed in XML, because in
- XML the parser is not affected by such state, and thus the element
- would not have the desired effect.</p>
+ parser was invoked.</p>
<p>The <code>noscript</code> element must not be used in <span>XML
documents</span>.</p>
@@ -13472,10 +13470,43 @@
</noscript>
</form></pre>
- <p>When script is enabled, a button appears to do the calculation
+ <p>When script is disabled, a button appears to do the calculation
on the server side. When script is enabled, the value is computed
on-the-fly instead.</p>
+ <p>The <code>noscript</code> element is a blunt
+ instrument. Sometimes, scripts might be enabled, but for some
+ reason the page's script might fail. For this reason, it's
+ generally better to avoid using <code>noscript</code>, and to
+ instead design the script to change the page from being a
+ scriptless page to a scripted page on the fly, as in the next
+ example:</p>
+
+ <pre><form action="calcSquare.php">
+ <p>
+ <label for=x>Number</label>:
+ <input id="x" name="x" type="number">
+ </p>
+ <strong><input id="submit" type=submit value="Calculate Square"></strong>
+ <script>
+ var x = document.getElementById('x');
+ var output = document.createElement('p');
+ output.textContent = 'Type a number; it will be squared right then!';
+ x.form.appendChild(output);
+ x.form.onsubmit = function () { return false; }
+ x.oninput = function () {
+ var v = x.valueAsNumber;
+ output.textContent = v + ' squared is ' + v * v;
+ };
+<strong> var submit = document.getElementById('submit');
+ submit.parentNode.removeChild(submit);</strong>
+ </script>
+</form></pre>
+
+ <p>The above technique is also useful in XHTML, since
+ <code>noscript</code> is not supported in <span>the XHTML
+ syntax</span>.</p>
+
</div>