Click here to Skip to main content
16,014,662 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Send my own POST (edit) Pin
alex.barylski19-Jul-02 10:50
alex.barylski19-Jul-02 10:50 
GeneralRe: Send my own POST (edit) Pin
Jeremy Falcon19-Jul-02 11:05
professionalJeremy Falcon19-Jul-02 11:05 
GeneralRe: Send my own POST (edit) Pin
alex.barylski19-Jul-02 13:32
alex.barylski19-Jul-02 13:32 
GeneralFormatting text without HTML knowledge... Pin
DarrenS15-Jul-02 9:54
DarrenS15-Jul-02 9:54 
GeneralRe: Formatting text without HTML knowledge... Pin
Nick Parker21-Jul-02 17:42
protectorNick Parker21-Jul-02 17:42 
GeneralRe: Formatting text without HTML knowledge... Pin
Suolan23-Jul-02 18:39
Suolan23-Jul-02 18:39 
GeneralHiding table Pin
Hans Ruck14-Jul-02 23:54
Hans Ruck14-Jul-02 23:54 
GeneralRe: Hiding table Pin
Paul Watson15-Jul-02 7:13
sitebuilderPaul Watson15-Jul-02 7:13 
Bogdan Rechi wrote:
I need to hide a table and to show it after the page has loaded at a later moment.

Ok I won't write all your code for you, but here is the general idea.

First you use CSS to hide the TABLE. You will need to do it inline (which is bad, but about your only solution) so that the TABLE is hidden and we don't have to wait for the CSS file to load. Use style="display: none" or style="visibility: hidden" in the TABLEs opening tag. e.g. <table style="display: none">.

Then you need to give your TABLE a unique ID so that we can reference it. e.g. <table id="tblHiddenTable">.

Then in your BODY tag you need an ONLOAD event which will set the DISPLAY attribute of the TABLE to inline, this will display the TABLE once the page is loaded. e.g. <body onload="document.all.tblHiddenTable.style.display = 'inline'">

That shows the table once the page is loaded. If you want to display the TABLE even after that a specific time, say 5 seconds later, then you need to use onload="setInterval ('next_frame(document.all.tblHiddenTable.style.display = 'inline')', 5000);". setInterval basically allows you to fire off a function after a certain number of milliseconds have elapsed.

hope that helps, if not write back.

regards,
Paul Watson
Bluegrass
Cape Town, South Africa

The greatest thing you'll ever learn is just to love, and to be loved in return - Moulin Rouge

Alison Pentland wrote:
I now have an image of you in front of the mirror in the morning, wearing your knickers, socks and shoes trying to decided if they match!
GeneralRe: Hiding table Pin
Pradhip15-Jul-02 11:22
Pradhip15-Jul-02 11:22 
QuestionHow Do i Avoid Refresh Pin
Pradhip14-Jul-02 15:03
Pradhip14-Jul-02 15:03 
AnswerRe: How Do i Avoid Refresh Pin
Suolan23-Jul-02 18:31
Suolan23-Jul-02 18:31 
QuestionHow can i use list view Pin
Mustafai14-Jul-02 9:26
Mustafai14-Jul-02 9:26 
GeneralAutomatically set the page as the homepage Pin
riche14-Jul-02 2:18
riche14-Jul-02 2:18 
GeneralRe: Automatically set the page as the homepage Pin
benjymous15-Jul-02 0:52
benjymous15-Jul-02 0:52 
GeneralLinks and Underlines Pin
Michael Martin12-Jul-02 22:25
professionalMichael Martin12-Jul-02 22:25 
GeneralRe: Links and Underlines Pin
Nish Nishant13-Jul-02 1:06
sitebuilderNish Nishant13-Jul-02 1:06 
GeneralRe: Links and Underlines Pin
Michael Martin13-Jul-02 1:56
professionalMichael Martin13-Jul-02 1:56 
GeneralRe: Links and Underlines Pin
Paul Watson15-Jul-02 7:26
sitebuilderPaul Watson15-Jul-02 7:26 
GeneralRe: Links and Underlines Pin
Michael Martin24-Jul-02 3:54
professionalMichael Martin24-Jul-02 3:54 
QuestionHow can Open Document .doc etc or pic from asp page Pin
Mustafai12-Jul-02 20:20
Mustafai12-Jul-02 20:20 
AnswerRe: How can Open Document .doc etc or pic from asp page Pin
benjymous15-Jul-02 0:53
benjymous15-Jul-02 0:53 
GeneralUpdate Datagrid problem Pin
Steve Severance12-Jul-02 17:41
Steve Severance12-Jul-02 17:41 
GeneralRe: Update Datagrid problem Pin
Not Active13-Jul-02 2:58
mentorNot Active13-Jul-02 2:58 
GeneralRe: Update Datagrid problem Pin
Steve Severance16-Jul-02 3:04
Steve Severance16-Jul-02 3:04 
GeneralRe: Update Datagrid problem Pin
Not Active16-Jul-02 14:30
mentorNot Active16-Jul-02 14:30 

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.