Click here to Skip to main content
15,867,765 members
Articles / Programming Languages / Javascript
Article

Changing content on the fly using JavaScript

Rate me:
Please Sign up or sign in to vote.
4.63/5 (8 votes)
18 Aug 20012 min read 293.3K   15   8
Using JavaScript and DHTML, content on your page can be changed dynamically and on-the-fly. Learn how to in this tutorial! You're learn three different techniques, one for IE5, NS4, and NS6.

Introduction

One of my favorite uses of JavaScript, and I guess more specifically, DHTML, is to change content on the fly. Using just a few lines of scripting, I can do away with the slow downloading Java and Flash, and change text even after the page has loaded. I write this tutorial based on the assumption that you have at least some working knowledge of JavaScript.

Changing text requires 3 different techniques, depending on the browser. If you're like me, you favor Internet Explorer 5, but the point is that there are always people using other browsers, so we must address them all.

Details

Let me first introduce a simple text which I will base my explanations on changing text using:

HTML
<div ID="testing">MSNBC.com</div>

In Internet Explorer 4 or above, the script to change the above text is:

document.all.testing.innerHTML = "A very cool site!"

I access the text's ID, which tells the script which text I wish to change. Then I use the property innerHTML, which allows me to change this text to another.

In Netscape 6, the idea to alter a text is very similar, except in the precise syntax:

document.getElementById("testing").innerHTML = "A very cool site!"

Interesting to note is that Internet Explorer 5 also supports this method of changing text. If you don't care about IE4, this one line is sufficient to cover both IE5 and NS6.

Finally, we have the dreaded Netscape 4, which surprising is still more popular than NS6. To change text in this browser, I must actually embed the text using a different set of tags (from the DIV). The tags required is:

HTML
<ilayer name="testing"><layer name="testing2">MSNBC.com</layer></ilayer>

Once the proper tags are setup, I can change its text in Netscape 4 using:

document.testing.document.test2.document.write("A very cool site!")
document.testing.document.test2.document.close()

Awk! Yes, it's quite messy, but that's the only route to NS4's heart!

Conclusion

Many interesting and useful applications can be created by dynamically altering text. I can create a message scroller that changes messages every few seconds, a text that changes when I move my mouse over it, or even an image slide show with a corresponding description beneath it.

If you're looking for working examples of changing text on the fly, a good place to start is Dynamic Drive. Well, that's it for now. Visit my site if you have any suggestions for new tutorials I can contribute.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionslididng div Pin
mnalammwb16-Mar-08 21:29
mnalammwb16-Mar-08 21:29 
Generalrandomly changing images on refresh using javascript Pin
Anonymous9-Apr-05 8:03
Anonymous9-Apr-05 8:03 
QuestionHow to change image before or after display? Pin
Narendra Chandel1-Apr-04 22:34
Narendra Chandel1-Apr-04 22:34 
GeneralCorrect way to change layer content in Netscape 4.x Pin
emailmichael5-Jun-02 19:37
emailmichael5-Jun-02 19:37 
GeneralCompatibility Pin
Marc Richarme20-Aug-01 12:14
Marc Richarme20-Aug-01 12:14 
GeneralRe: Compatibility Pin
Anonymous14-Apr-04 17:46
Anonymous14-Apr-04 17:46 
QuestionOpera 5.12? Pin
Victor Vogelpoel19-Aug-01 0:40
Victor Vogelpoel19-Aug-01 0:40 
AnswerRe: Opera 5.12? Pin
26-Nov-01 6:56
suss26-Nov-01 6:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.