Jun 25, 2001 #1 zzfive03 Programmer Joined Jun 11, 2001 Messages 267 Is there a property to make a HTML text box inactive? (but still visible)
Jun 25, 2001 1 #2 link9 Programmer Joined Nov 28, 2000 Messages 3,387 Location US <input type=text onFocus="this.blur();"> Upvote 0 Downvote
Jun 25, 2001 #3 foxbox Programmer Joined Sep 11, 2000 Messages 1,052 Location NL <input type=text readonly> br Gerard Upvote 0 Downvote
Jun 25, 2001 #4 riffy Programmer Joined Mar 29, 2001 Messages 106 Location US readonly is for IE, onFocus="this.blur();" will work for netscape.. Upvote 0 Downvote