Is there away to display a readonly checkbox which value cannot be changed? I know that I can use disabled checkbox for this purpose but it does not send its value in a form. Any advices? Thanks.
You can use this : <input type="checkbox" onclick="return false" onkeydown="return false" /> and by using css you can change visual effect of checkbox so that it looks like disabled.