<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN" "http://www.wapforum.org/DTD/wml13.dtd">
<wml>
 <!-- page name="index"-->
 <template>
  <do optional="false" label="Back Up" type="accept">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#index"/>
  </do>
 </template>
 <card ordered="true" newcontext="false" id="index">
  <do optional="false" label="Back Up" type="accept">
   <noop/>
  </do>
  <do optional="false" label="Back" type="prev">
   <prev/>
  </do>
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#html-attributes"/>
  </do>
  <a href="#html-attributes" accesskey="1">Page 1</a>
  <br/>
  <a href="#html-attribute-list" accesskey="2">Page 2</a>
  <br/>
  <a href="#class-attribute" accesskey="3">class</a>
  <br/>
  <a href="#contenteditable-attribute" accesskey="4">contenteditable</a>
  <br/>
  <a href="#contextmenu-attribute" accesskey="5">contextmenu</a>
  <br/>
  <a href="#data-attributes" accesskey="6">data-*</a>
  <br/>
  <a href="#dir-attribute" accesskey="7">dir</a>
  <br/>
  <a href="#draggable-attribute" accesskey="8">draggable</a>
  <br/>
  <a href="#hidden-attribute" accesskey="9">hidden</a>
  <br/>
  <a href="#id-attribute">id</a>
  <br/>
  <a href="#item-attribute">item</a>
  <br/>
  <a href="#lang-attribute">lang</a>
  <br/>
  <a href="#spellcheck-attribute">spellcheck</a>
  <br/>
  <a href="#style-attribute">style</a>
  <br/>
  <a href="#tabindex-attribute">tabindex</a>
  <br/>
  <a href="#title-attribute">title</a>
  <br/>
  <a href="#event-attributes">event</a>
  <br/>
 </card>
 <card ordered="true" newcontext="false" id="html-attributes">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#html-attribute-list"/>
  </do>
  <!-- h2 -->
  <h2>HTML 5 Attributes in General</h2>
  <!-- h3 -->
  <h3>HTML Best Practices for Attributes</h3>
  <!-- h4 -->
  <h4>Boolean HTML Attributes</h4>
  <p>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. </p>
  <p align="left">&lt;input type="text" readonly="readonly"/&gt;&lt;input type="text" required="required"/&gt;&lt;option selected="selected"/&gt;&lt;video autoplay="autoplay" ...&gt;</p>
  <p align="left">
   <a href="#html-attribute-list">Next: Page 2</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="html-attribute-list">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#class-attribute"/>
  </do>
  <!-- h3 -->
  <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>
  <!-- block type="toc" -->
  <dt>
   <a href="#N100A5">html-attributes</a>
  </dt>
  <dt>
   <a href="#class">The class Attribute</a>
  </dt>
  <dt>
   <a href="#contenteditable">The contenteditable Attribute</a>
  </dt>
  <dt>
   <a href="#contextmenu">The contextmenu Attribute</a>
  </dt>
  <dt>
   <a href="#author-defined">The Author-Defined data-* Attributes</a>
  </dt>
  <dt>
   <a href="#dir">The dir Attribute</a>
  </dt>
  <dt>
   <a href="#draggable">The draggable Attribute</a>
  </dt>
  <dt>
   <a href="#hidden">The hidden Attribute</a>
  </dt>
  <dt>
   <a href="#id">The id Attribute</a>
  </dt>
  <dt>
   <a href="#item">The item Attribute</a>
  </dt>
  <dt>
   <a href="#lang">The lang Attribute</a>
  </dt>
  <dt>
   <a href="#spellcheck">The spellcheck Attribute</a>
  </dt>
  <dt>
   <a href="#style">The style Attribute</a>
  </dt>
  <dt>
   <a href="#tabindex">The tabindex Attribute</a>
  </dt>
  <dt>
   <a href="#title">The title Attribute</a>
  </dt>
  <dt>
   <a href="#events">The &lt;on...&gt; Event Attributes</a>
  </dt>
  <a href="xml-base-attribute.wml">XML Atttributes in HTML</a>
  <p align="left">
   <a href="#class-attribute">Next: class</a>
   <br/>
   <a href="#html-attributes">Prev: Page 1</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="class-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#contenteditable-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The class HTML attribute</h3>
  <p>The class attribute </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;p class="centered"&gt;Alignment of this paragraph will be determined by the settings of the ".center" style.&lt;/p&gt;</p>
  <!-- h3 -->
  <h3>Google Translate class attribute</h3>
  <p>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 </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span class="notranslate"&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#contenteditable-attribute">Next: contenteditable</a>
   <br/>
   <a href="#html-attribute-list">Prev: Page 2</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="contenteditable-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#contextmenu-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The contenteditable HTML attribute</h3>
  <p>The contenteditable attribute </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span contenteditable=""&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#contextmenu-attribute">Next: contextmenu</a>
   <br/>
   <a href="#class-attribute">Prev: class</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="contextmenu-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#data-attributes"/>
  </do>
  <!-- h3 -->
  <h3>The contextmenu HTML attribute</h3>
  <p>The contextmenu attribute </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span contextmenu=""&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#data-attributes">Next: data-*</a>
   <br/>
   <a href="#contenteditable-attribute">Prev: contenteditable</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="data-attributes">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#dir-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The author-defined &lt;data-*&gt; attributes</h3>
  <p/>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span data-latitude="40°19'N" data-longitude="79°59'35"W"&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#dir-attribute">Next: dir</a>
   <br/>
   <a href="#contextmenu-attribute">Prev: contextmenu</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="dir-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#draggable-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The dir HTML attribute</h3>
  <p>The dir attribute </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span dir=""&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#draggable-attribute">Next: draggable</a>
   <br/>
   <a href="#data-attributes">Prev: data-*</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="draggable-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#hidden-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The draggable HTML attribute</h3>
  <p>The draggable attribute </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span draggable=""&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#hidden-attribute">Next: hidden</a>
   <br/>
   <a href="#dir-attribute">Prev: dir</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="hidden-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#id-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The hidden HTML attribute</h3>
  <p>The hidden attribute </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span hidden=""&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#id-attribute">Next: id</a>
   <br/>
   <a href="#draggable-attribute">Prev: draggable</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="id-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#item-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The id HTML attribute</h3>
  <p>The id attribute </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span id="mytag"&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#item-attribute">Next: item</a>
   <br/>
   <a href="#hidden-attribute">Prev: hidden</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="item-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#lang-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The item HTML attribute</h3>
  <p>The item attribute is used for "microdata", which can be machine-readable. </p>
  <p>More information: <a href="item-attribute/">item attribute</a>
  </p>
  <p align="left">
   <a href="#lang-attribute">Next: lang</a>
   <br/>
   <a href="#id-attribute">Prev: id</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="lang-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#spellcheck-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The lang HTML attribute</h3>
  <p>The lang attribute </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span lang=""&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#spellcheck-attribute">Next: spellcheck</a>
   <br/>
   <a href="#item-attribute">Prev: item</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="spellcheck-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#style-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The spellcheck HTML attribute</h3>
  <p>The spellcheck attribute </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span spellcheck=""&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#style-attribute">Next: style</a>
   <br/>
   <a href="#lang-attribute">Prev: lang</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="style-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#tabindex-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The style HTML attribute</h3>
  <p>The style attribute </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span style=""&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#tabindex-attribute">Next: tabindex</a>
   <br/>
   <a href="#spellcheck-attribute">Prev: spellcheck</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="tabindex-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#title-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The tabindex HTML attribute</h3>
  <p>The tabindex attribute </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span tabindex=""&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#title-attribute">Next: title</a>
   <br/>
   <a href="#style-attribute">Prev: style</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="title-attribute">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="#event-attributes"/>
  </do>
  <!-- h3 -->
  <h3>The title HTML attribute</h3>
  <p>The title 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 -->
  <h4>Examples</h4>
  <p align="left">&lt;span title=""&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="#event-attributes">Next: event</a>
   <br/>
   <a href="#tabindex-attribute">Prev: tabindex</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
 <card ordered="true" newcontext="false" id="event-attributes">
  <do optional="false" type="options" label="Next">
   <go enctype="application/x-www-form-urlencoded" method="get" sendreferer="true" href="xml-attributes.wml#xml-base-attribute"/>
  </do>
  <!-- h3 -->
  <h3>The &lt;on...&gt; Event attributes</h3>
  <p>The list of the event attributes include: </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onabort</p>
  <p align="left">The onabort attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onbeforeonload</p>
  <p align="left">The onbeforeonload attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onbeforeunload</p>
  <p align="left">The onbeforeunload attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onblur</p>
  <p align="left">The onblur attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">oncanplay</p>
  <p align="left">The oncanplay attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">oncanplaythrough</p>
  <p align="left">The oncanplaythrough attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onchange</p>
  <p align="left">The onchange attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onclick</p>
  <p align="left">The onclick attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">oncontextmenu</p>
  <p align="left">The oncontextmenu attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">oncopy</p>
  <p align="left">The oncopy attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">oncut</p>
  <p align="left">The oncut attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ondblclick</p>
  <p align="left">The ondblclick attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ondrag</p>
  <p align="left">The ondrag attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ondragend</p>
  <p align="left">The ondragend attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ondragenter</p>
  <p align="left">The ondragenter attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ondragleave</p>
  <p align="left">The ondragleave attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ondragover</p>
  <p align="left">The ondragover attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ondragstart</p>
  <p align="left">The ondragstart attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ondrop</p>
  <p align="left">The ondrop attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ondurationchange</p>
  <p align="left">The ondurationchange attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onemptied</p>
  <p align="left">The onemptied attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onended</p>
  <p align="left">The onended attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onerror</p>
  <p align="left">
   <p>On the <a href="../tags/body-tag/">body tag</a>, 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. </p>
  </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onfocus</p>
  <p align="left">The onfocus attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onformchange</p>
  <p align="left">The onformchange attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onforminput</p>
  <p align="left">The onforminput attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ongesturechange</p>
  <p align="left">The ongesturechange attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ongestureend</p>
  <p align="left">The ongestureend attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ongesturestart</p>
  <p align="left">The ongesturestart attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">oninput</p>
  <p align="left">The oninput attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onkeydown</p>
  <p align="left">The onkeydown attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onkeypress</p>
  <p align="left">The onkeypress attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onkeyup</p>
  <p align="left">The onkeyup attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onload</p>
  <p align="left">
   <p>On the <a href="../tags/body-tag/">body tag</a>, 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. </p>
  </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onloadeddata</p>
  <p align="left">The onloadeddata attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onloadedmetadata</p>
  <p align="left">The onloadedmetadata attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onloadstart</p>
  <p align="left">The onloadstart attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onmousedown</p>
  <p align="left">The onmousedown attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onmousemove</p>
  <p align="left">The onmousemove attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onmouseout</p>
  <p align="left">The onmouseout attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onmouseover</p>
  <p align="left">The onmouseover attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onmouseup</p>
  <p align="left">The onmouseup attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onmousewheel</p>
  <p align="left">The onmousewheel attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onmove</p>
  <p align="left">The onmove attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onorientationchange</p>
  <p align="left">The onorientationchange attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onpaste</p>
  <p align="left">The onpaste attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onpause</p>
  <p align="left">The onpause attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onplay</p>
  <p align="left">The onplay attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onplaying</p>
  <p align="left">The onplaying attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onprogress</p>
  <p align="left">The onprogress attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onratechange</p>
  <p align="left">The onratechange attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onreadystatechange</p>
  <p align="left">The onreadystatechange attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onreset</p>
  <p align="left">The onreset attribute has been deprecated in HTML 5 and should not be used. </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onresize</p>
  <p align="left">The onresize attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onscroll</p>
  <p align="left">The onscroll attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onseek</p>
  <p align="left">The onseek attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onseeking</p>
  <p align="left">The onseeking attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onselect</p>
  <p align="left">The onselect attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onshow</p>
  <p align="left">The onshow attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onstalled</p>
  <p align="left">The onstalled attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onsubmit</p>
  <p align="left">The onsubmit attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onsuspend</p>
  <p align="left">The onsuspend attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ontimeupdate</p>
  <p align="left">The ontimeupdate attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ontouchcancel</p>
  <p align="left">The ontouchcancel attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ontouchend</p>
  <p align="left">The ontouchend attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ontouchmove</p>
  <p align="left">The ontouchmove attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">ontouchstart</p>
  <p align="left">The ontouchstart attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onunload</p>
  <p align="left">The onunload attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onvolumechange</p>
  <p align="left">The onvolumechange attribute </p>
  <!--TO DO: uses XMLStyles_wml1.xsl - delete XMLStyles_wml.xsl-->
  <p align="left">onwaiting</p>
  <p align="left">The onwaiting attribute </p>
  <!-- h4 -->
  <h4>Examples</h4>
  <p align="left">&lt;span onclick=""&gt;...&lt;/span&gt;</p>
  <p align="left">
   <a href="xml-attributes.wml#xml-base-attribute">Next: xml:base</a>
   <br/>
   <a href="#title-attribute">Prev: title</a>
   <br/>
   <a href="#index">Back Up: Menu</a>
   <br/>
  </p>
 </card>
</wml>

