I have a menu which has links with icons. The icons doesn't show up until i hover over it. The icons are set as background images.
When i see in the fiddler the request for the image happens only when i hover over the link
HTML:
<div style="display:none" id="menu">
<a href="test.htm"><span class="wicon"/>Test</a>
</div>
CSS:
.wicon {
background:url('icons.png') no-repeat;
width:17px;
height:16px;
display:inline-block;
vertical-align:text-top;
}