SharkBait Posted October 12, 2006 Share Posted October 12, 2006 Hi, I read from a MySQL database using PHP and I am curious how can I delay displaying the lines by lines of information with Javascript?Output:You age slowly[wait 2 secs]You age slowly some more[wait 2 secs]You age really slow now[wait 2 secs]So that it outputs the first line, waits 2 seconds, then outputs the 2nd line, waits 2 sec, etc.I've seen this done, but not sure how they do it.Thanks. Link to comment https://forums.phpfreaks.com/topic/23762-delay-displaying-text/ Share on other sites More sharing options...
fenway Posted October 12, 2006 Share Posted October 12, 2006 Try using setTimeout()... I guess you could hide divs you've already written, or just write out the page dynamically (i.e. set .innerHTML). Link to comment https://forums.phpfreaks.com/topic/23762-delay-displaying-text/#findComment-107953 Share on other sites More sharing options...
SharkBait Posted October 12, 2006 Author Share Posted October 12, 2006 Ah thank you, the setTimeout() works perfectly.:) Link to comment https://forums.phpfreaks.com/topic/23762-delay-displaying-text/#findComment-107960 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.