In my asp.net mvc project, I am dealing with numerous checkboxes. The client has provided me with a PSD file in which the checkboxes are either white or black. In the absence of any check mark indicator, I assume the black ones are checked. My goal is to remove the tip and change the color of the checked checkboxes to black with a white border.
<input name="24" type="checkbox" value="true" />
<input name="24" type="hidden" value="false" />
<label for="Industry__Manufacturing__and_Technology">Industry</label>
<br />
<input name="25" type="checkbox" value="true" />
<input name="25" type="hidden" value="false" />
<label for="Intelligence">Intelligence</label>
<br />
...........
I have generated HTML similar to the one above.