View Single Post
  #5 (permalink)  
Old 01-08-05, 10:24 AM
TwoD TwoD is offline
Community VIP
 
Join Date: Sep 2003
Location: 404
Posts: 1,813
Thanks: 0
Thanked 0 Times in 0 Posts
<input value="Post Message"
onclick="disabled=true;return true;" type="submit">
should be:
<input value="Post Message"
onclick="this.disabled=true;return true;" type="submit">

Don't think the first script should work in NE either....
Btw, use the [code ][/code ] wrappers for long code pieces. Makes it easier to read.
Reply With Quote