I'm using this progress bar from http://www.dynamicdrive.com/dynamicindex11/xpprogressbar.htm and I want to be able to display some text after the bar finishes loading.
I figured out out to get it to output the text, but it loads in a new page. I want to get it to load where the bar is located. Here's how I'm placing the code now:
<td>
<script type="text/javascript">
var bar2= createBar(320,15,'white',1,'black','green',85,7,3,"document.write('hello world')");
</script>
</td>
That shows the bar in the middle of my table, when it finishes it just opens to a new page saying hello world at the top. Is there a way to get it to spit out hello world in place of the bar, or at least in that table?