This is a discussion on "[SOLVED] why isnt my javascript displaying the text" within the JavaScript Forum section. This forum, and the thread "[SOLVED] why isnt my javascript displaying the text are both part of the Program Your Website category.
|
|
|
|
|
![]() |
||
[SOLVED] why isnt my javascript displaying the text
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
#1
|
|||
|
|||
|
[SOLVED] why isnt my javascript displaying the text
hi, i have written the following javascript, however when i click the button it wont display the text. can anyone see what the problem is and how to get it working. i am trying to do it so the text is displayed in a sequence.
thanks
Last edited by Rakuli; Jan 26th, 2008 at 12:05. Reason: Please use [html][/html] tags when posting html |
|
|
|
#2
|
||||
|
||||
|
Re: why isnt my javascript displaying the text
Your problem is that you can't set the value of a div -- you have to change it's contents and re-wriote the HTML..
Change these lines var t1=setTimeout("document.getElementById('displayDiv ').value='2 seconds!'",2000); to var t1=setTimeout("document.getElementById('displayDiv ').innerHTML='2 seconds!'",2000); so that it rewrites the HTML. Cheers
Last Blog Entry: The wannabe juggler's quest (Oct 27th, 2007)
|
|
#3
|
|||
|
|||
|
Re: why isnt my javascript displaying the text
thanks so much, what u suggested was right and works now,
do you know how i can keep the text that on the page for example, 2seconds, 4 seconds and 6 seconds will stay on the page once displayed rather than disappear when another thing is called |
|
#4
|
|||
|
|||
|
Re: why isnt my javascript displaying the text
its ok i have solved the problem, i will mark the post as solved now
|
![]() |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| displaying text for a set amount of time | smudge618 | JavaScript Forum | 1 | Feb 5th, 2008 13:39 |
| [SOLVED] div isnt moving down | danny322 | Web Page Design | 1 | Dec 3rd, 2007 12:35 |
| [SOLVED] Image with text -> text with background | alexgeek | Web Page Design | 5 | Nov 13th, 2007 23:25 |
| Please Help with hiding and displaying layers using CSS and Javascript | rosh1e | JavaScript Forum | 2 | Apr 15th, 2007 03:04 |
| Javascript menu not displaying correclty | AdRock | Web Page Design | 11 | Sep 26th, 2006 13:53 |