Progress / Status message
Hello,
I have this code which displays a message in the status bar of the browser... after
each select is done the javascript is run and the message "now processing...." is displayed
in the status bar. This works great, but I would like to do the same thing, BUT have
the message ("now processing....") displayed on the page which is loaded. In other words,
the same message must be displayed, but in the middle of the page where it is more obvious
and prominent.
Can anyone help me with this please??
Thanks,
T
Code:
<tr>
<td width="50%" style="font-family: Arial " align="left"><select name="D16" size="1">
<option selected value="ACCESSORIES">ACCESSORIES</option>
<option value="1">First Item</option>
</select><script language="JavaScript" type="text/javascript">window.status='Now Processing Record: 1 OF 10'</script></td>
</tr>
<tr>
<td width="50%" style="font-family: Arial " align="left"><select name="D16" size="1">
<option selected value="ACCESSORIES">ACCESSORIES</option>
<option value="2">Second Item</option>
</select><script language="JavaScript" type="text/javascript">window.status='Now Processing Record: 2 OF 10'</script></td>
</tr>
<tr>
<td width="50%" style="font-family: Arial " align="left"><select name="D16" size="1">
<option selected value="ACCESSORIES">ACCESSORIES</option>
<option value="3">Third Item</option>
</select><script language="JavaScript" type="text/javascript">window.status='Now Processing Record: 3 OF 10'</script></td>
</tr>
//this is just to reset the status, so I display a blank line!!
<script language="JavaScript" type="text/javascript">window.status=''</script>