Click here to Skip to main content
6,630,586 members and growing! (15,194 online)
Email Password   helpLost your password?
Web Development » Client side scripting » General     Intermediate

Changing content on the fly using JavaScript

By David Gardner

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.
Javascript, VC6Win2K, Visual Studio, Dev
Posted:18 Aug 2001
Views:190,822
Bookmarked:13 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
13 votes for this article.
Popularity: 4.37 Rating: 3.92 out of 5

1

2

3
3 votes, 37.5%
4
5 votes, 62.5%
5

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:

<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:

<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

About the Author

David Gardner


Member

Location: United States United States

Other popular Client side scripting articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 8 of 8 (Total in Forum: 8) (Refresh)FirstPrevNext
Questionslididng div Pinmembermnalammwb22:29 16 Mar '08  
Generalrandomly changing images on refresh using javascript PinsussAnonymous9:03 9 Apr '05  
GeneralHow to change image before or after display? PinmemberNarendra Chandel23:34 1 Apr '04  
GeneralCorrect way to change layer content in Netscape 4.x Pinmemberemailmichael20:37 5 Jun '02  
GeneralCompatibility PinmemberMarc Richarme13:14 20 Aug '01  
GeneralRe: Compatibility PinsussAnonymous18:46 14 Apr '04  
GeneralOpera 5.12? PinmemberVictor Vogelpoel1:40 19 Aug '01  
GeneralRe: Opera 5.12? PinmemberOnno7:56 26 Nov '01  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 18 Aug 2001
Editor: Nishant Sivakumar
Copyright 2001 by David Gardner
Everything else Copyright © CodeProject, 1999-2009
Web19 | Advertise on the Code Project