Important alert: (current site time 7/15/2013 1:09:31 PM EDT)
 

VB icon

Alter HTML source of layer in IE

Email
Submitted on: 6/5/1998
By: Found on the Web 
Level: Not Given
User Rating: By 4 Users
Compatibility: JavaScript
Views: 15749
 
     How do I alter the HTML source of a layer in Internet Explorer? As you are probably aware, Explorer does not support "layers" as such, however text or HTML grouped together using DIV, SPAN and ID can be changed. The innerHTML property allows you to change the HTML source. Found at:http://www.irt.org
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
				
'**************************************
' Name: Alter HTML source of layer in IE
' Description:How do I alter the HTML source of a layer in Internet Explorer?
As you are probably aware, Explorer does not support "layers" as such, however text or HTML grouped together using DIV, SPAN and ID can be changed. 
The innerHTML property allows you to change the HTML source.
Found at:http://www.irt.org
' By: Found on the Web
'**************************************

<SCRIPT LANGUAGE="JavaScript">
function myClick() {
alert('innerHTML: ' + document.all('MyID').innerHTML);
document.all("MyID").innerHTML = '<FONT COLOR="#FF0000">This</FONT> is <B>not</B> <I>plain</I>';
alert('innerHTML: ' + document.all('MyID').innerHTML);
}
</SCRIPT>
<P ID="MyID">This is a <B>plain</B> paragraph</P>
<FORM><INPUT TYPE="BUTTON" VALUE="Click Me" onClick="myClick()"></FORM>
 


Other 219 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Not Given category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments
4/2/2002 10:23:56 AMVitan Minchev

Perfect ! Simple and effective !
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.