HighDots Forums  

"Unknown Runtime Error" on Setting HTML into span element. JScript.

alt.html.dhtml alt.html.dhtml


Discuss "Unknown Runtime Error" on Setting HTML into span element. JScript. in the alt.html.dhtml forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
David Rocke
 
Posts: n/a

Default "Unknown Runtime Error" on Setting HTML into span element. JScript. - 04-13-2004 , 04:42 AM






I have a <span> element called 'frameContents' into which I want to
insert HTML. As soon as I do I get an "Unknown Runtime Error". I can
insert plain text and everything is OK.

This is OK...
"document.all.frameContents.innerHTML += 'Jimmy';"
....but this isn't....
"document.all.frameContents.innerHTML += '<table></table>';"

The "frameContents" span is...
<span style="display:none" id="frameContents" name="frameContents">
<!-- This span will hold the contents of the loader frame -->
</span>

Has anyone got any ideas?

David Rocke,
SCOTLAND.

Reply With Quote
  #2  
Old   
Eric Bohlman
 
Posts: n/a

Default Re: "Unknown Runtime Error" on Setting HTML into span element. JScript. - 04-13-2004 , 04:30 PM






davidrrocke (AT) hotmail (DOT) com (David Rocke) wrote in
news:221394b9.0404130142.1822e023 (AT) posting (DOT) google.com:

Quote:
I have a <span> element called 'frameContents' into which I want to
insert HTML. As soon as I do I get an "Unknown Runtime Error". I can
insert plain text and everything is OK.

This is OK...
"document.all.frameContents.innerHTML += 'Jimmy';"
...but this isn't....
"document.all.frameContents.innerHTML += '<table></table>';"

The "frameContents" span is...
span style="display:none" id="frameContents" name="frameContents"
!-- This span will hold the contents of the loader frame --
/span

Has anyone got any ideas?
You're trying to insert a <table> (block-level element) inside a <span>
(inline-level element), creating a syntactically invalid DOM structure that
the browser doesn't know what to do with.


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.