Sets or retrieves the object and its content in HTML.
Syntax
HTML N/A Scripting object.outerHTML [ = sHTML ]
Possible Values
sHTML String that specifies content and HTML tags. The property is read/write with no default value (see Remarks).
Remarks
The outerHTML property is read-only on the HTML, HEAD, BODY, FRAMESET, TBODY, TD, TFOOT, TH, THEAD, and TR objects.
The property can be any valid string containing a combination of text and tags.
When the property is set, the given string completely replaces the object, including its start and end tags. If the string contains HTML tags, the string is parsed and formatted as it is placed into the document.
This property is accessible at run time as of Microsoft® Internet Explorer 5. Removing elements at run time, before the closing tag has been parsed, can prevent other areas of the document from rendering.
You can set this property only after the onload event fires on the window. When dynamically creating a tag using TextRange, innerHTML, or outerHTML, use Microsoft® JScript® (compatible with ECMA 262 language specification) to create new events to handle the newly formed tags. Microsoft® Visual Basic® Scripting Edition (VBScript) is not supported.
You can change the value of the TITLE element using the document.title property.
To change the contents of the TFOOT, THEAD, TR, and TD elements, use the table object model. For example, use the rowIndex property or the rows collection to retrieve a reference to a specific table row. You can add or delete rows using the insertRow and deleteRow methods. To retrieve a reference to a specific cell, use the cellIndex property or the cells collection. You can add or delete rows using the insertCell and deleteCell methods. To change the content of a particular cell, use the innerHTML property.
Example
This example uses the outerHTML property to copy an object, accompanying attributes, and children to a list when a user clicks one of the objects.
Sample Code
<SCRIPT> function fnCopyHTML(){ var oWorkItem = event.srcElement; if((oWorkItem.tagName != "UL") && (oWorkItem.tagName != "LI")){ alert("Adding " + oWorkItem.outerHTML + " to the list."); oScratch.innerHTML += oWorkItem.outerHTML + "<BR>"; } } </SCRIPT> <UL onclick = "fnCopyHTML()"> <LI><B>Bold text</b> <LI><I>Italic text</I> <LI><U>Underlined text</i> <LI><STRIKE>Strikeout text</STRIKE> </UL> <P> <DIV ID = "oScratch" > </DIV>
Applies To
A, ACRONYM, ADDRESS, APPLET, AREA, B, BDO, BGSOUND, BIG, BLOCKQUOTE, BR, BUTTON, CENTER, CITE, CODE, COMMENT, custom, DD, DEL, DFN, DIR, DIV, DL, DT, EM, EMBED, FIELDSET, FONT, FORM, FRAMESET, HEAD, Hn, HR, HTML, I, IFRAME, IMG, INPUT type=button, INPUT type=checkbox, INPUT type=file, INPUT type=hidden, INPUT type=image, INPUT type=password, INPUT type=radio, INPUT type=reset, INPUT type=submit, INPUT type=text, INS, KBD, LABEL, LEGEND, LI, LISTING, MAP, MARQUEE, MENU, NEXTID, NOBR, OBJECT, OL, P, PLAINTEXT, PRE, Q, RT, RUBY, S, SAMP, SELECT, SMALL, SPAN, STRIKE, STRONG, SUB, SUP, TABLE, TBODY, TD, TEXTAREA, TFOOT, TH, THEAD, TR, TT, U, UL, VAR, WBR, XMP
See Also