During the developing of an .NET application I have came across a problem.
What I want to do, is to change the background color of a simple Html checkbox, so I have used the following HTML code:
<input type="checkbox" id="check1" style="background-color: yellow" />
This code works only with OPERA, and not with other browsers (Chrome, Firefox, Explorer)
So i have used also Javascript code:
document.getElementById("check1").style.backgroundColor = "yellow"
and JQuery sintax:
$("#check1").css("background-color", "yellow")
but the result is the same.
This code works if I use an HTML TextBox.
Can someone help me please ??
During the developing of an .NET application I have came across a problem.
What I want to do, is to change the background color of a simple Html checkbox, so I have used the following HTML code:
<input type="checkbox" id="check1" style="background-color: yellow" />
This code works only with OPERA, and not with other browsers (Chrome, Firefox, Explorer)
So i have used also Javascript code:
document.getElementById("check1").style.backgroundColor = "yellow"
and JQuery sintax:
$("#check1").css("background-color", "yellow")
but the result is the same.
This code works if I use an HTML TextBox.
Can someone help me please ??
Share Improve this question asked Jul 2, 2013 at 17:44 user2217039user2217039 1312 gold badges4 silver badges11 bronze badges 2- 1 stackoverflow./questions/7398462/… Looks like there is an issue with firefox, chrome, and safari that prohibit this. Did a quick search and did not see a solution. – Michael Wheeler Commented Jul 2, 2013 at 17:56
- The only way to change the checkbox itself is to do image replacement for the checkbox, Ex on CSS-Tricks – Ryan B Commented Jul 2, 2013 at 18:47
2 Answers
Reset to default 4Wrap each checkbox into a div and then change the div's background-color.
So it should be like this:
<div style="background-color: yellow;">
<input type="checkbox" />
</div>
<div style="background-color: red;">
<input type="checkbox" />
</div>
<div style="background-color: green;">
<input type="checkbox" />
</div>
Demo.
It will not work even in the new Opera, so I remend to wrap it with a div container.
<div id="check1_Container">
<label for="check1">Check box 1</label>
<input type="checkbox" id="check1" style="background-color: yellow" />
</div>