in reply to Re^2: Forcing output to a browser when perl is busy
in thread Forcing output to a browser when perl is busy
<script language="Javascript1.1"> function justOneClick() { myform.clickme.disabled=true; // don't click me twice return true; // so the submit will go ahaed } </script> ... <form method="POST" name="myform" onSubmit="return justOneClick()"> ... <input type="submit" name ="clickme"> </form>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Forcing output to a browser when perl is busy
by Anonymous Monk on Jul 17, 2004 at 22:40 UTC |