<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/styles/XMLStylesDoc_xhtml11_en.xsl"?><!DOCTYPE document SYSTEM "/schemas/XMLStyles10.dtd">
<document xmlns="http://XMLStyles.com/namespaces/styles" xmlns:xst="http://XMLStyles.com/namespaces/styles" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:date="http://exslt.org/dates-and-times">
   <noxml>
      <p xmlns="http://www.w3.org/1999/xhtml"/>
      <!-- You are viewing the source.  The following message should be ignored if you did "View Source" in your browser. -->
      <p xmlns="http://www.w3.org/1999/xhtml">
ATTENTION: XML WEB PAGES NOT SUPPORTED
   If you see this message, your current browser does not support the
   1999 XSLT 1.0 (or later) standard for XML web pages such as this one.
   Please upgrade your browser to a newer version
   that supports 1999 or later standards such as:
      Mozilla Firefox version 1.0.2 or later (GetFirefox -&gt; http://www.GetFirefox.com/)
      Netscape version 8 or later
      Safari version 1.3 or later
      Opera version 9 or later
      Microsoft Internet Explorer (MSIE) version 5 or later
   For further assistance, contact the software vendor for your browser.
   To go to the X<!-- extended HTML -->HTML version of this page click the following link:
<a href="index.html">index.html</a>
      </p>
      <p xmlns="http://www.w3.org/1999/xhtml">&#160;</p>
   </noxml>
   <path>/attributes/</path>
   <site>HTML 5 Reference</site>
   <logo xlink:type="simple" xlink:href="/images/html-5.jpg" media="screen" width="156" height="27">HTML 5 Reference</logo>
   <logo xlink:type="simple" xlink:href="/images/html-5.jpg" media="print" width="156" height="27">HTML 5 Reference</logo>
   <logo xlink:type="simple" xlink:href="/images/html-5.jpg" media="handheld" width="150" height="17">HTML 5 Reference</logo>
   <navigation where="sections">
      <label>HTML 5 Reference</label>
   </navigation>
   <section id="body" type="body">
      <pages name="index">
         <navigation where="pages">
            <label>index</label>
            <link xlink:type="simple" xlink:href="index.xml">HTML5 Attributes</link>
            <link xlink:type="simple" xlink:href="xml-attributes.xml">XML Attributes</link>
         </navigation>
         <page id="N1002F" name="index">
            <label>HTML5 Attributes</label>
            <title>HTML 5 Atttribute Reference</title>
            <subpage id="N10035" name="html-attributes">
               <h2 class="center">HTML 5 Attributes in General</h2>
               <h3>HTML Best Practices for Attributes</h3>
               <h4>Boolean HTML Attributes</h4>
               <p>Using the full form (<code>attribute="attribute"</code>) of
                  boolean attributes rather than the minimized form is recommended.
                  The full form will be properly understood by web browsers parsing
                  polyglot documents as either the HTML syntax or the XML syntax of HTML 5.
               </p>
               <blockcode>
                  <l>&lt;input type="text" readonly="readonly"/&gt;</l>
                  <l>&lt;input type="text" required="required"/&gt;</l>
                  <l>&lt;option selected="selected"/&gt;</l>
                  <l>&lt;video autoplay="autoplay" ...&gt;</l>
               </blockcode>
            </subpage>
            <h2 class="center">Common HTML 5 Attributes</h2>
            <subpage id="N1004F" name="html-attribute-list">
               <h3>List of HTML attributes that can be coded on any tag</h3>
               <p>These are the common (global) attributes that can be used on various HTML tags.
               </p>
               <dl>
                  <di>
                     <dt>
                        <h2 class="center">HTML 5 Attributes in General</h2>
                     </dt>
                  </di>
                  <di>
                     <dt>
                        <h3>HTML Best Practices for Attributes</h3>
                     </dt>
                  </di>
                  <di>
                     <dt>
                        <h4>Boolean HTML Attributes</h4>
                     </dt>
                  </di>Using the full form (attribute="attribute") of
                  boolean attributes rather than the minimized form is recommended.
                  The full form will be properly understood by web browsers parsing
                  polyglot documents as either the HTML syntax or the XML syntax of HTML 5.
               &lt;input type="text" readonly="readonly"/&gt;&lt;input type="text" required="required"/&gt;&lt;option selected="selected"/&gt;&lt;video autoplay="autoplay" ...&gt;classThe class Attribute<di>
                     <dt>
                        <h3>The <code>class</code> HTML attribute</h3>
                     </dt>
                  </di>The class attribute
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;p class="centered"&gt;Alignment of this paragraph will be   determined by the settings of the ".center" style.&lt;/p&gt;<di>
                     <dt>
                        <h3>Google Translate <code>class</code> attribute</h3>
                     </dt>
                  </di>Although it is a misuse of the class attribute,
                  Google Translate recognizes the specific value notranslate,
                  indicating that the content of the element should not be translated
                  into other spoken languages.
http://www.Google.com/help/faq_translation.html#donttrans
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span class="notranslate"&gt;...&lt;/span&gt;contenteditableThe contenteditable Attribute<di>
                     <dt>
                        <h3>The <code>contenteditable</code> HTML attribute</h3>
                     </dt>
                  </di>The contenteditable attribute
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span contenteditable=""&gt;...&lt;/span&gt;contextmenuThe contextmenu Attribute<di>
                     <dt>
                        <h3>The <code>contextmenu</code> HTML attribute</h3>
                     </dt>
                  </di>The contextmenu attribute
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span contextmenu=""&gt;...&lt;/span&gt;data-*The Author-Defined data-* Attributes<di>
                     <dt>
                        <h3>The author-defined <code>&lt;data-*&gt;</code> attributes</h3>
                     </dt>
                  </di>
                  <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span data-latitude="40°19'N" data-longitude="79°59'35"W"&gt;...&lt;/span&gt;dirThe dir Attribute<di>
                     <dt>
                        <h3>The <code>dir</code> HTML attribute</h3>
                     </dt>
                  </di>The dir attribute
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span dir=""&gt;...&lt;/span&gt;draggableThe draggable Attribute<di>
                     <dt>
                        <h3>The <code>draggable</code> HTML attribute</h3>
                     </dt>
                  </di>The draggable attribute
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span draggable=""&gt;...&lt;/span&gt;hiddenThe hidden Attribute<di>
                     <dt>
                        <h3>The <code>hidden</code> HTML attribute</h3>
                     </dt>
                  </di>The hidden attribute
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span hidden=""&gt;...&lt;/span&gt;idThe id Attribute<di>
                     <dt>
                        <h3>The <code>id</code> HTML attribute</h3>
                     </dt>
                  </di>The id attribute
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span id="mytag"&gt;...&lt;/span&gt;itemThe item Attribute<di>
                     <dt>
                        <h3>The <code>item</code> HTML attribute</h3>
                     </dt>
                  </di>The item attribute is used for "microdata", which can be machine-readable.
               More information:
                  item attributelangThe lang Attribute<di>
                     <dt>
                        <h3>The <code>lang</code> HTML attribute</h3>
                     </dt>
                  </di>The lang attribute
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span lang=""&gt;...&lt;/span&gt;spellcheckThe spellcheck Attribute<di>
                     <dt>
                        <h3>The <code>spellcheck</code> HTML attribute</h3>
                     </dt>
                  </di>The spellcheck attribute
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span spellcheck=""&gt;...&lt;/span&gt;styleThe style Attribute<di>
                     <dt>
                        <h3>The <code>style</code> HTML attribute</h3>
                     </dt>
                  </di>The style attribute
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span style=""&gt;...&lt;/span&gt;tabindexThe tabindex Attribute<di>
                     <dt>
                        <h3>The <code>tabindex</code> HTML attribute</h3>
                     </dt>
                  </di>The tabindex attribute
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span tabindex=""&gt;...&lt;/span&gt;titleThe title Attribute<di>
                     <dt>
                        <h3>The <code>title</code> HTML attribute</h3>
                     </dt>
                  </di>The title attribute
               Line breaks within the title attribute in the source code
                  are significant and will be included if the title is displayed.
               <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span title=""&gt;...&lt;/span&gt;eventThe &lt;on...&gt; Event Attributes<di>
                     <dt>
                        <h3>The <code>&lt;on...&gt;</code> Event attributes</h3>
                     </dt>
                  </di>The list of the event attributes include:
               onabortThe onabort attribute
                     onbeforeonloadThe onbeforeonload attribute
                     onbeforeunloadThe onbeforeunload attribute
                     onblurThe onblur attribute
                     oncanplayThe oncanplay attribute
                     oncanplaythroughThe oncanplaythrough attribute
                     onchangeThe onchange attribute
                     onclickThe onclick attribute
                     oncontextmenuThe oncontextmenu attribute
                     oncopyThe oncopy attribute
                     oncutThe oncut attribute
                     ondblclickThe ondblclick attribute
                     ondragThe ondrag attribute
                     ondragendThe ondragend attribute
                     ondragenterThe ondragenter attribute
                     ondragleaveThe ondragleave attribute
                     ondragoverThe ondragover attribute
                     ondragstartThe ondragstart attribute
                     ondropThe ondrop attribute
                     ondurationchangeThe ondurationchange attribute
                     onemptiedThe onemptied attribute
                     onendedThe onended attribute
                     onerrorOn the body tag, the
                           onerror attribute is a property of the document's window object.
                           On other elements, the onerror attribute is a property of the HTML element itself.
                        onfocusThe onfocus attribute
                     onformchangeThe onformchange attribute
                     onforminputThe onforminput attribute
                     ongesturechangeThe ongesturechange attribute
                     ongestureendThe ongestureend attribute
                     ongesturestartThe ongesturestart attribute
                     oninputThe oninput attribute
                     onkeydownThe onkeydown attribute
                     onkeypressThe onkeypress attribute
                     onkeyupThe onkeyup attribute
                     onloadOn the body tag, the
                           onload attribute is a property of the document's window object.
                           On other elements, the onload attribute is a property of the HTML element itself.
                        onloadeddataThe onloadeddata attribute
                     onloadedmetadataThe onloadedmetadata attribute
                     onloadstartThe onloadstart attribute
                     onmousedownThe onmousedown attribute
                     onmousemoveThe onmousemove attribute
                     onmouseoutThe onmouseout attribute
                     onmouseoverThe onmouseover attribute
                     onmouseupThe onmouseup attribute
                     onmousewheelThe onmousewheel attribute
                     onmoveThe onmove attribute
                     onorientationchangeThe onorientationchange attribute
                     onpasteThe onpaste attribute
                     onpauseThe onpause attribute
                     onplayThe onplay attribute
                     onplayingThe onplaying attribute
                     onprogressThe onprogress attribute
                     onratechangeThe onratechange attribute
                     onreadystatechangeThe onreadystatechange attribute
                     onresetThe onreset attribute has been deprecated in HTML 5 and should not be used.
                     onresizeThe onresize attribute
                     onscrollThe onscroll attribute
                     onseekThe onseek attribute
                     onseekingThe onseeking attribute
                     onselectThe onselect attribute
                     onshowThe onshow attribute
                     onstalledThe onstalled attribute
                     onsubmitThe onsubmit attribute
                     onsuspendThe onsuspend attribute
                     ontimeupdateThe ontimeupdate attribute
                     ontouchcancelThe ontouchcancel attribute
                     ontouchendThe ontouchend attribute
                     ontouchmoveThe ontouchmove attribute
                     ontouchstartThe ontouchstart attribute
                     onunloadThe onunload attribute
                     onvolumechangeThe onvolumechange attribute
                     onwaitingThe onwaiting attribute
                     <di>
                     <dt>
                        <h4>Examples</h4>
                     </dt>
                  </di>&lt;span onclick=""&gt;...&lt;/span&gt;<di>
                     <dt>
                        <link xlink:type="simple" xlink:href="xml-attributes.xml">XML Atttributes in HTML</link>
                     </dt>
                  </di>
               </dl>
            </subpage>
            <subpage id="class" name="class-attribute">
               <label>class</label>
               <title>The class Attribute</title>
               <h3>The <code>class</code> HTML attribute</h3>
               <p>The <code>class</code> attribute
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;p class="centered"&gt;Alignment of this paragraph will be</l>
                  <l>   determined by the settings of the ".center" style.&lt;/p&gt;</l>
               </blockcode>
               <h3>Google Translate <code>class</code> attribute</h3>
               <p>Although it is a misuse of the <code>class</code> attribute,
                  Google Translate recognizes the specific value <code>notranslate</code>,
                  indicating that the content of the element should not be translated
                  into other spoken languages.
http://www.Google.com/help/faq_translation.html#donttrans
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span class="notranslate"&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="contenteditable" name="contenteditable-attribute">
               <label>contenteditable</label>
               <title>The contenteditable Attribute</title>
               <h3>The <code>contenteditable</code> HTML attribute</h3>
               <p>The <code>contenteditable</code> attribute
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span contenteditable=""&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="contextmenu" name="contextmenu-attribute">
               <label>contextmenu</label>
               <title>The contextmenu Attribute</title>
               <h3>The <code>contextmenu</code> HTML attribute</h3>
               <p>The <code>contextmenu</code> attribute
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span contextmenu=""&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="author-defined" name="data-attributes">
               <label>data-*</label>
               <title>The Author-Defined data-* Attributes</title>
               <h3>The author-defined <code>&lt;data-*&gt;</code> attributes</h3>
               <p/>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span data-latitude="40°19'N" data-longitude="79°59'35"W"&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="dir" name="dir-attribute">
               <label>dir</label>
               <title>The dir Attribute</title>
               <h3>The <code>dir</code> HTML attribute</h3>
               <p>The <code>dir</code> attribute
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span dir=""&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="draggable" name="draggable-attribute">
               <label>draggable</label>
               <title>The draggable Attribute</title>
               <h3>The <code>draggable</code> HTML attribute</h3>
               <p>The <code>draggable</code> attribute
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span draggable=""&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="hidden" name="hidden-attribute">
               <label>hidden</label>
               <title>The hidden Attribute</title>
               <h3>The <code>hidden</code> HTML attribute</h3>
               <p>The <code>hidden</code> attribute
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span hidden=""&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="id" name="id-attribute">
               <label>id</label>
               <title>The id Attribute</title>
               <h3>The <code>id</code> HTML attribute</h3>
               <p>The <code>id</code> attribute
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span id="mytag"&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="item" name="item-attribute">
               <label>item</label>
               <title>The item Attribute</title>
               <h3>The <code>item</code> HTML attribute</h3>
               <p>The <code>item</code> attribute is used for "microdata", which can be machine-readable.
               </p>
               <p>More information:
                  <link xlink:type="simple" xlink:href="item-attribute/">item attribute</link>
               </p>
            </subpage>
            <subpage id="lang" name="lang-attribute">
               <label>lang</label>
               <title>The lang Attribute</title>
               <h3>The <code>lang</code> HTML attribute</h3>
               <p>The <code>lang</code> attribute
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span lang=""&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="spellcheck" name="spellcheck-attribute">
               <label>spellcheck</label>
               <title>The spellcheck Attribute</title>
               <h3>The <code>spellcheck</code> HTML attribute</h3>
               <p>The <code>spellcheck</code> attribute
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span spellcheck=""&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="style" name="style-attribute">
               <label>style</label>
               <title>The style Attribute</title>
               <h3>The <code>style</code> HTML attribute</h3>
               <p>The <code>style</code> attribute
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span style=""&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="tabindex" name="tabindex-attribute">
               <label>tabindex</label>
               <title>The tabindex Attribute</title>
               <h3>The <code>tabindex</code> HTML attribute</h3>
               <p>The <code>tabindex</code> attribute
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span tabindex=""&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="title" name="title-attribute">
               <label>title</label>
               <title>The title Attribute</title>
               <h3>The <code>title</code> HTML attribute</h3>
               <p>The <code>title</code> attribute
               </p>
               <p>Line breaks within the title attribute in the source code
                  are significant and will be included if the title is displayed.
               </p>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span title=""&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <subpage id="events" name="event-attributes">
               <label>event</label>
               <title>The &lt;on...&gt; Event Attributes</title>
               <h3>The <code>&lt;on...&gt;</code> Event attributes</h3>
               <p>The list of the event attributes include:
               </p>
               <dl>
                  <di>
                     <dt>onabort</dt>
                     <dd>The <code>onabort</code> attribute
                     </dd>
                  </di>
                  <di id="onbeforeonload">
                     <dt>onbeforeonload</dt>
                     <dd>The <code>onbeforeonload</code> attribute
                     </dd>
                  </di>
                  <di id="onbeforeunload">
                     <dt>onbeforeunload</dt>
                     <dd>The <code>onbeforeunload</code> attribute
                     </dd>
                  </di>
                  <di id="onblur">
                     <dt>onblur</dt>
                     <dd>The <code>onblur</code> attribute
                     </dd>
                  </di>
                  <di id="oncanplay">
                     <dt>oncanplay</dt>
                     <dd>The <code>oncanplay</code> attribute
                     </dd>
                  </di>
                  <di id="oncanplaythrough">
                     <dt>oncanplaythrough</dt>
                     <dd>The <code>oncanplaythrough</code> attribute
                     </dd>
                  </di>
                  <di id="onchange">
                     <dt>onchange</dt>
                     <dd>The <code>onchange</code> attribute
                     </dd>
                  </di>
                  <di id="onclick">
                     <dt>onclick</dt>
                     <dd>The <code>onclick</code> attribute
                     </dd>
                  </di>
                  <di id="oncontextmenu">
                     <dt>oncontextmenu</dt>
                     <dd>The <code>oncontextmenu</code> attribute
                     </dd>
                  </di>
                  <di id="oncopy">
                     <dt>oncopy</dt>
                     <dd>The <code>oncopy</code> attribute
                     </dd>
                  </di>
                  <di id="oncut">
                     <dt>oncut</dt>
                     <dd>The <code>oncut</code> attribute
                     </dd>
                  </di>
                  <di id="ondblclick">
                     <dt>ondblclick</dt>
                     <dd>The <code>ondblclick</code> attribute
                     </dd>
                  </di>
                  <di id="ondrag">
                     <dt>ondrag</dt>
                     <dd>The <code>ondrag</code> attribute
                     </dd>
                  </di>
                  <di id="ondragend">
                     <dt>ondragend</dt>
                     <dd>The <code>ondragend</code> attribute
                     </dd>
                  </di>
                  <di id="ondragenter">
                     <dt>ondragenter</dt>
                     <dd>The <code>ondragenter</code> attribute
                     </dd>
                  </di>
                  <di id="ondragleave">
                     <dt>ondragleave</dt>
                     <dd>The <code>ondragleave</code> attribute
                     </dd>
                  </di>
                  <di id="ondragover">
                     <dt>ondragover</dt>
                     <dd>The <code>ondragover</code> attribute
                     </dd>
                  </di>
                  <di id="ondragstart">
                     <dt>ondragstart</dt>
                     <dd>The <code>ondragstart</code> attribute
                     </dd>
                  </di>
                  <di id="ondrop">
                     <dt>ondrop</dt>
                     <dd>The <code>ondrop</code> attribute
                     </dd>
                  </di>
                  <di id="ondurationchange">
                     <dt>ondurationchange</dt>
                     <dd>The <code>ondurationchange</code> attribute
                     </dd>
                  </di>
                  <di id="onemptied">
                     <dt>onemptied</dt>
                     <dd>The <code>onemptied</code> attribute
                     </dd>
                  </di>
                  <di id="onended">
                     <dt>onended</dt>
                     <dd>The <code>onended</code> attribute
                     </dd>
                  </di>
                  <di id="onerror">
                     <dt>onerror</dt>
                     <dd>
                        <p>On the <link xlink:type="simple" xlink:href="../tags/body-tag/">body tag</link>, the
                           <code>onerror</code> attribute is a property of the document's <code>window</code> object.
                           On other elements, the <code>onerror</code> attribute is a property of the HTML element itself.
                        </p>
                     </dd>
                  </di>
                  <di id="onfocus">
                     <dt>onfocus</dt>
                     <dd>The <code>onfocus</code> attribute
                     </dd>
                  </di>
                  <di id="onformchange">
                     <dt>onformchange</dt>
                     <dd>The <code>onformchange</code> attribute
                     </dd>
                  </di>
                  <di id="onforminput">
                     <dt>onforminput</dt>
                     <dd>The <code>onforminput</code> attribute
                     </dd>
                  </di>
                  <di id="ongesturechange">
                     <dt>ongesturechange</dt>
                     <dd>The <code>ongesturechange</code> attribute
                     </dd>
                  </di>
                  <di id="ongestureend">
                     <dt>ongestureend</dt>
                     <dd>The <code>ongestureend</code> attribute
                     </dd>
                  </di>
                  <di id="ongesturestart">
                     <dt>ongesturestart</dt>
                     <dd>The <code>ongesturestart</code> attribute
                     </dd>
                  </di>
                  <di id="oninput">
                     <dt>oninput</dt>
                     <dd>The <code>oninput</code> attribute
                     </dd>
                  </di>
                  <di id="onkeydown">
                     <dt>onkeydown</dt>
                     <dd>The <code>onkeydown</code> attribute
                     </dd>
                  </di>
                  <di id="onkeypress">
                     <dt>onkeypress</dt>
                     <dd>The <code>onkeypress</code> attribute
                     </dd>
                  </di>
                  <di id="onkeyup">
                     <dt>onkeyup</dt>
                     <dd>The <code>onkeyup</code> attribute
                     </dd>
                  </di>
                  <di id="onload">
                     <dt>onload</dt>
                     <dd>
                        <p>On the <link xlink:type="simple" xlink:href="../tags/body-tag/">body tag</link>, the
                           <code>onload</code> attribute is a property of the document's <code>window</code> object.
                           On other elements, the <code>onload</code> attribute is a property of the HTML element itself.
                        </p>
                     </dd>
                  </di>
                  <di id="onloadeddata">
                     <dt>onloadeddata</dt>
                     <dd>The <code>onloadeddata</code> attribute
                     </dd>
                  </di>
                  <di id="onloadedmetadata">
                     <dt>onloadedmetadata</dt>
                     <dd>The <code>onloadedmetadata</code> attribute
                     </dd>
                  </di>
                  <di id="onloadstart">
                     <dt>onloadstart</dt>
                     <dd>The <code>onloadstart</code> attribute
                     </dd>
                  </di>
                  <di id="onmousedown">
                     <dt>onmousedown</dt>
                     <dd>The <code>onmousedown</code> attribute
                     </dd>
                  </di>
                  <di id="onmousemove">
                     <dt>onmousemove</dt>
                     <dd>The <code>onmousemove</code> attribute
                     </dd>
                  </di>
                  <di id="onmouseout">
                     <dt>onmouseout</dt>
                     <dd>The <code>onmouseout</code> attribute
                     </dd>
                  </di>
                  <di id="onmouseover">
                     <dt>onmouseover</dt>
                     <dd>The <code>onmouseover</code> attribute
                     </dd>
                  </di>
                  <di id="onmouseup">
                     <dt>onmouseup</dt>
                     <dd>The <code>onmouseup</code> attribute
                     </dd>
                  </di>
                  <di id="onmousewheel">
                     <dt>onmousewheel</dt>
                     <dd>The <code>onmousewheel</code> attribute
                     </dd>
                  </di>
                  <di id="onmove">
                     <dt>onmove</dt>
                     <dd>The <code>onmove</code> attribute
                     </dd>
                  </di>
                  <di id="onorientationchange">
                     <dt>onorientationchange</dt>
                     <dd>The <code>onorientationchange</code> attribute
                     </dd>
                  </di>
                  <di id="onpaste">
                     <dt>onpaste</dt>
                     <dd>The <code>onpaste</code> attribute
                     </dd>
                  </di>
                  <di id="onpause">
                     <dt>onpause</dt>
                     <dd>The <code>onpause</code> attribute
                     </dd>
                  </di>
                  <di id="onplay">
                     <dt>onplay</dt>
                     <dd>The <code>onplay</code> attribute
                     </dd>
                  </di>
                  <di id="onplaying">
                     <dt>onplaying</dt>
                     <dd>The <code>onplaying</code> attribute
                     </dd>
                  </di>
                  <di id="onprogress">
                     <dt>onprogress</dt>
                     <dd>The <code>onprogress</code> attribute
                     </dd>
                  </di>
                  <di id="onratechange">
                     <dt>onratechange</dt>
                     <dd>The <code>onratechange</code> attribute
                     </dd>
                  </di>
                  <di id="onreadystatechange">
                     <dt>onreadystatechange</dt>
                     <dd>The <code>onreadystatechange</code> attribute
                     </dd>
                  </di>
                  <di id="onreset">
                     <dt id="onreset">onreset</dt>
                     <dd>The <code>onreset</code> attribute has been deprecated in HTML 5 and should not be used.
                     </dd>
                  </di>
                  <di id="onresize">
                     <dt>onresize</dt>
                     <dd>The <code>onresize</code> attribute
                     </dd>
                  </di>
                  <di id="onscroll">
                     <dt>onscroll</dt>
                     <dd>The <code>onscroll</code> attribute
                     </dd>
                  </di>
                  <di id="onseek">
                     <dt>onseek</dt>
                     <dd>The <code>onseek</code> attribute
                     </dd>
                  </di>
                  <di id="onseeking">
                     <dt>onseeking</dt>
                     <dd>The <code>onseeking</code> attribute
                     </dd>
                  </di>
                  <di id="onselect">
                     <dt>onselect</dt>
                     <dd>The <code>onselect</code> attribute
                     </dd>
                  </di>
                  <di id="onshow">
                     <dt>onshow</dt>
                     <dd>The <code>onshow</code> attribute
                     </dd>
                  </di>
                  <di id="onstalled">
                     <dt>onstalled</dt>
                     <dd>The <code>onstalled</code> attribute
                     </dd>
                  </di>
                  <di id="onsubmit">
                     <dt>onsubmit</dt>
                     <dd>The <code>onsubmit</code> attribute
                     </dd>
                  </di>
                  <di id="onsuspend">
                     <dt>onsuspend</dt>
                     <dd>The <code>onsuspend</code> attribute
                     </dd>
                  </di>
                  <di id="ontimeupdate">
                     <dt>ontimeupdate</dt>
                     <dd>The <code>ontimeupdate</code> attribute
                     </dd>
                  </di>
                  <di id="ontouchcancel">
                     <dt>ontouchcancel</dt>
                     <dd>The <code>ontouchcancel</code> attribute
                     </dd>
                  </di>
                  <di id="ontouchend">
                     <dt>ontouchend</dt>
                     <dd>The <code>ontouchend</code> attribute
                     </dd>
                  </di>
                  <di id="ontouchmove">
                     <dt>ontouchmove</dt>
                     <dd>The <code>ontouchmove</code> attribute
                     </dd>
                  </di>
                  <di id="ontouchstart">
                     <dt>ontouchstart</dt>
                     <dd>The <code>ontouchstart</code> attribute
                     </dd>
                  </di>
                  <di id="onunload">
                     <dt>onunload</dt>
                     <dd>The <code>onunload</code> attribute
                     </dd>
                  </di>
                  <di id="onvolumechange">
                     <dt>onvolumechange</dt>
                     <dd>The <code>onvolumechange</code> attribute
                     </dd>
                  </di>
                  <di id="onwaiting">
                     <dt>onwaiting</dt>
                     <dd>The <code>onwaiting</code> attribute
                     </dd>
                  </di>
               </dl>
               <h4>Examples</h4>
               <blockcode>
                  <l>&lt;span onclick=""&gt;...&lt;/span&gt;</l>
               </blockcode>
            </subpage>
            <updated local="2009-08-01">Saturday August 1, 2009</updated>
         </page>
      </pages>
   </section>
   <copyright>Copyright © 2009 Accilent<span class="sup">®</span> Corp. Alteration of content, including addition of any function such as hypertext links or pop-up advertising, or interference with the hypertext links or other functions of this site is expressly prohibited.</copyright>
   <disclaimer>All information, links, forms, applications and other items on this site or obtained from it are provided <b>AS IS</b>, WITHOUT WARRANTY OF ANY KIND EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.</disclaimer>
</document>
