On Wednesday 26 March 2003 09:16 am, shaun wrote:
> Hi,
>
> is it possible to have a checkbox that if it is specified to be checked
> when the page is being formulated then it cannot be unchecked?

When you write the page, if the checkbox is checked initially, write also a 
javascript to prevent it from being uncheck. Something like this:

<INPUT TYPE="CHECKBOX" onClick="this.checked=true;" CHECKED>

So everytime it's clicked, the javascript will make sure that it's checked 
again.

HTH
-RDB


-- 
-------------------------------------------------
/"\  ASCII Ribbon Campaign against HTML
\ /  email and proprietary format
 X   attachments.
/ \
-------------------------------------------------


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to