I really need to generate the coordinates for an image map area through javascript. For some reason Chrome and Safari fail to map it properly. This is my code in a simple way:
dynamicMapping('#targetMap', [360,288,470,180,880,180,980,288]);
function dynamicMapping(targetMap, coordinates){
var coords = '';
for(i=0; i<coordinates.length; i++){
coords += (coordinates[i]+',');
}
$(targetMap).attr("coords", coords);
}
The coordinates are supposed to draw a trapezoid, which works great on Firefox but it fails to draw the first point on Chrome and Safari. If I enter the coordinates in the HTML, everything works perfect but form reason going through javascript makes Webkit miss the first point of the coords which results in a triangle instead of a trapezoid. Does anybody know how to deal with this?
Thanks in advance
coordinates.join(', ')to join the elements into a comma-delimited list. It might even fix your code. – Blender Oct 3 '12 at 15:55