Reputation: 17269
I have the following html:
<label>
<img src="..." />
<input type="checkbox" .../>
</label>
In Chrome and Firefox, clicking the img
will check/uncheck the checkbox. But in IE8, it doesn't respond when the image is clicked.
Is my html tag invalid?
Upvotes: 4
Views: 1050
Reputation: 191729
IE8 is .. stupid? Change the <img>
to a <span>
with background-image
CSS for the same image.
Upvotes: 3