• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HTML tags

Are there any HTML tags which have a text attribute? I'm trying to use javascript to dynamically load text into a portion of a page, and I need a tag which I can find by it's ID and set the text of.
 
Try using a plain DIV and setting its innerHTML to the text you're loading in (through an XMLHTTPRequest object I presume).
 
Back
Top