I have the following icon in my code:
HTML:
<a href="#" id="PickUp" class="PickUpIcon"></a>
CSS:
width: 24px;
height: 24px;
background: url(../images/Icons/Answer.jpg) no-repeat;
cursor: pointer;
and it looks like that:
I want (using css, js or jQuery) to turn this icon to something like this:
meaning turning the color icon to black&white one, is it possible?
I'm using html 4, CSS2 and IE 8 (I can't use HTML5 or other browsers)
I know I can use 2 different icons but I want to know if there is another possibility since Icons can be added dynamically and I don't want everyone will need to supply 2 icons.