Is it possiible to cross check HTML checkbox?
Thanks
Sohail
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I assume you want to change the way a checkbox looks when it is checked.
That is not possible using HTML’s native
<input type="checkbox">controls: They are rendered by the browser, and usually in the style the Operating System renders check boxes.You would have to use a JavaScript checkbox component that allows you to use custom bitmaps. One example is the jQuery checkbox plugin.
Whether adding all this code for this minimal effect is worth the effort, you need to decide for yourself. In my opinion, it is usually not worth it and sticking to the normal controls is better.