Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[e] (0) <form>, <fieldset> examples
git-svn-id: http://svn.whatwg.org/webapps@3814 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Sep 12, 2009
1 parent 3ec1f11 commit 1dc5974
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
33 changes: 33 additions & 0 deletions index
Expand Up @@ -30362,6 +30362,20 @@ interface <dfn id=htmlformelement>HTMLFormElement</dfn> : <a href=#htmlelement>H

</div>

<div class=example>

<p>This example shows two search forms:</p>

<pre>&lt;form action="http://www.google.com/search" method="get"&gt;
&lt;label&gt;Google: &lt;input type="search" name="q"&gt;&lt;/label&gt; &lt;input type="submit" value="Search..."&gt;
&lt;/form&gt;
&lt;form action="http://www.bing.com/search" method="get"&gt;
&lt;label&gt;Bing: &lt;input type="search" name="q"&gt;&lt;/label&gt; &lt;input type="submit" value="Search..."&gt;
&lt;/form&gt;</pre>

</div>




<h4 id=the-fieldset-element><span class=secno>4.10.2 </span>The <dfn><code>fieldset</code></dfn> element</h4>
Expand Down Expand Up @@ -30455,6 +30469,25 @@ interface <dfn id=htmlformelement>HTMLFormElement</dfn> : <a href=#htmlelement>H

</div>

<div class=example>

<p>The following snippet shows a fieldset with a checkbox in the
legend that controls whether or not the fieldset is enabled. The
contents of the fieldset consist of two required text fields and an
optional year/month control.</p>

<pre>&lt;fieldset name="clubfields" disabled&gt;
&lt;legend&gt; &lt;label&gt;
&lt;input type=checkbox name=club onchange="form.clubfields.disabled = !checked"&gt;
Use Club Card
&lt;/label&gt; &lt;/legend&gt;
&lt;p&gt;&lt;label&gt;Name on card: &lt;input name=clubname required&gt;&lt;/label&gt;&lt;/p&gt;
&lt;p&gt;&lt;label&gt;Card number: &lt;input name=clubnum required pattern="[-0-9]+"&gt;&lt;/label&gt;&lt;/p&gt;
&lt;p&gt;&lt;label&gt;Expiry date: &lt;input name=clubexp type=month&gt;&lt;/label&gt;&lt;/p&gt;
&lt;/fieldset&gt;</pre>

</div>



<h4 id=the-label-element><span class=secno>4.10.3 </span>The <dfn><code>label</code></dfn> element</h4>
Expand Down
33 changes: 33 additions & 0 deletions source
Expand Up @@ -33692,6 +33692,20 @@ interface <dfn>HTMLFormElement</dfn> : <span>HTMLElement</span> {

</div>

<div class="example">

<p>This example shows two search forms:</p>

<pre>&lt;form action="http://www.google.com/search" method="get">
&lt;label>Google: &lt;input type="search" name="q">&lt;/label> &lt;input type="submit" value="Search...">
&lt;/form>
&lt;form action="http://www.bing.com/search" method="get">
&lt;label>Bing: &lt;input type="search" name="q">&lt;/label> &lt;input type="submit" value="Search...">
&lt;/form></pre>

</div>




<h4>The <dfn><code>fieldset</code></dfn> element</h4>
Expand Down Expand Up @@ -33800,6 +33814,25 @@ interface <dfn>HTMLFormElement</dfn> : <span>HTMLElement</span> {

</div>

<div class="example">

<p>The following snippet shows a fieldset with a checkbox in the
legend that controls whether or not the fieldset is enabled. The
contents of the fieldset consist of two required text fields and an
optional year/month control.</p>

<pre>&lt;fieldset name="clubfields" disabled>
&lt;legend> &lt;label>
&lt;input type=checkbox name=club onchange="form.clubfields.disabled = !checked">
Use Club Card
&lt;/label> &lt;/legend>
&lt;p>&lt;label>Name on card: &lt;input name=clubname required>&lt;/label>&lt;/p>
&lt;p>&lt;label>Card number: &lt;input name=clubnum required pattern="[-0-9]+">&lt;/label>&lt;/p>
&lt;p>&lt;label>Expiry date: &lt;input name=clubexp type=month>&lt;/label>&lt;/p>
&lt;/fieldset></pre>

</div>



<h4>The <dfn><code>label</code></dfn> element</h4>
Expand Down

0 comments on commit 1dc5974

Please sign in to comment.