Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

javascript: changing text in a div ?

Status
Not open for further replies.

dziem

Programmer
Feb 15, 2001
1
ZA
Yo

Does anybody know how to change the text (using javascript) in a div tag ? ie <DIV style=&quot;HEIGHT: 20px...etc etc>howto change this text</DIV>

Any suggestions will be appreciated ???
 
div_id.innerHTML = &quot;this text will now be in the div&quot;; adam@aauser.com
 
or if you are just supporting IE, and not placing HTML inside, you should use:

div_id.innerText

as it multiple times faster jared@aauser.com -
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top