Sets or retrieves the text of the object.
Syntax
| JavaScript | |
|---|
Property values
Type: String
the text.
Remarks
The outerText property is read-only on the html, tBody, td, tFoot, th, tHead, and tr objects.
When this property is set, the given string completely replaces the original text in the object.
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 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 table, tFoot, tHead, and tr 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.
Examples
This example uses the outerText property to replace an object's content; the object itself also is replaced.
Code example: http://samples.msdn.microsoft.com/workshop/samples/author/dhtml/refs/outerText.htm
<div id="oDiv"> <p id="oPara">Here's the text that will change.</p> </div> : <button onclick="oPara.outerText='WOW! It changed!'">Change text</button> <button onclick="oDiv.innerHTML='<P ID=oPara> And back again</P>'">Reset</button>
See also
- a
- abbr
- acronym
- address
- applet
- area
- article
- aside
- b
- bdo
- big
- blockQuote
- body
- br
- button
- caption
- center
- cite
- code
- col
- colGroup
- custom
- dd
- del
- dfn
- dir
- div
- dl
- dt
- em
- embed
- fieldSet
- figcaption
- figure
- font
- footer
- form
- frame
- frameSet
- head
- header
- hgroup
- 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
- isIndex
- kbd
- label
- legend
- li
- listing
- map
- mark
- marquee
- menu
- nav
- nextID
- noBR
- object
- ol
- optGroup
- option
- p
- plainText
- pre
- q
- rt
- ruby
- s
- samp
- section
- select
- small
- span
- strike
- strong
- sub
- sup
- table
- tBody
- td
- textArea
- tFoot
- th
- tHead
- tr
- tt
- u
- ul
- var
- xmp
- insertAdjacentText
Send comments about this topic to Microsoft
Build date: 11/28/2012