I have a world map image and I want to add random location pointers to it. In order to select a point on the map, I have created separate div elements to handle this.
For example:
<div id="div1" class="div-map-icon" style="left: 283px; top: 136px;"></div>
The div-map-icon class looks like this:
.div-map-icon{
background-image: url(../images/map_icon.png);
background-repeat: no-repeat;
height: 26px;
position: absolute;
float: left;
width: 20px;
}
Current Output:
However, when I attempted something similar using http://jsfiddle.net/Fy8vD/, it did not work in IE10.
Any assistance would be greatly appreciated?