How do I make a checkbox readonly?
How do I make a checkbox readonly?
(OP)
I tried using readonly after it but it doesn't work? Disabled does work, but our client doesn't like it and we can't use it.
Any ideas?
Any ideas?
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS Contact USThanks. We have received your request and will respond promptly. Come Join Us!Are you a
Computer / IT professional? Join Tek-Tips Forums!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting Guidelines |
How do I make a checkbox readonly?
|
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: How do I make a checkbox readonly?
<head>
<script language = "javascript">
function readonly(box){
if (box.checked){
box.checked = false;
}else{ box.checked = true;}
box.blur();
}
</script>
</head>
<body>
<form name = "test">
Yes: <input type = "checkbox" name = "testbox" value = "yes" onfocus = "readonly(this)" checked><br>
No: <input type = "checkbox" name = "testbox" value = "no" onfocus = "readonly(this)">
</form>
</body>
</html>
RE: How do I make a checkbox readonly?
Thread216-450209
_______________________________________________
{ str = "sleep is good for you. sleep gives you the energy you need to function";
ptr = /sleep/gi;Nstr = str.replace(ptr,"coffee");alert(Nstr); }
_______________________________________________
for the best results to your questions: FAQ333-2924
http://www.onpntwebdesigns.com