Check Boxes - Read only

M

MD Websunlimited

If you're using just late generation browsers then you can use the disabled attribute on the <input> tag.
<input type="checkbox" checked disabled >

If you be having visitors that will be using older browsers, I would redirect (encourge them) to download a later version, then use
a little JS to re-focus the control.

<input type="checkbox" checked disabled onfocus="this.form.nextfield.focus()" >

HTH,

--
Mike -- FrontPage MVP '97-'02
J-Bots 2004 102 Components For FP
http://www.websunlimited.com
FrontPage Add-ins Since '97 FP 2003 / 2002 / 2000 Compatible
Download the Trial http://www.microsoft.com/frontpage/downloads/addin/launchupdate/download.asp
 
T

Trevor L.

Add readonly="readonly" inside the tag?

I know this works for text boxes anyway
 
Top