in reply to Re^2: show a message only during the sleep time
in thread show a message only during the sleep time
That's the basic setup .. note that i just guessed at the javascript code in the hideWaitMsg() function -- that part is left as an excercise for the reader.print <<EOF; <html> <head> <title>ntop startup script</title> <STYLE TYPE='text/css'> h3 { color: red } a { text-decoration: none; font: bold 14pt/16pt Ariel, serif } a:hover { color: red } /* when mouse is over link */ </style> <script language="javascript"> function hideWaitMsg(){ var obj = getElementById('wait_msg_text'); obj.visible = false; } </script> </head> <body bgcolor='#c0c0d0' onLoad="hideWaitMsg()"> <center> <p><br></p> <p><br></p> <div id="wait_msg_text">pls wait, ntop will be started</div> EOF
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: show a message only during the sleep time
by cc (Beadle) on Jul 24, 2005 at 19:17 UTC | |
by davidrw (Prior) on Jul 24, 2005 at 19:57 UTC | |
by cc (Beadle) on Jul 24, 2005 at 21:59 UTC | |
by davidrw (Prior) on Jul 25, 2005 at 00:55 UTC | |
by cc (Beadle) on Jul 25, 2005 at 12:35 UTC | |
|