Thread: Countdown
View Single Post
Old 06-03-2006, 03:02 PM   #2 (permalink)
office politics
office politics's Avatar
 
It's all just 1s and 0s

Join Date: Jan 2004

Location: in the lab

Posts: 4,425

office politics will become famous soon enough

Default

Code:
<script>
<!--
function down() {
if (document.counter.box.value != 0) {
//alert(document.counter.box.value);
print();//print the screen
document.counter.box.value = --document.counter.box.value;//decrement counter
  }
}
-->
</script>
<form name=counter>
<input name=box type=text size=2 value=10>
<input type=button onclick=down(); value="minus one">
</form>
save attachment as html and open.
Attached Files
File Type: txt new.html.txt (371 Bytes, 17 views)
office politics is offline