Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Use coordinates.join(', ') to join the elements into a comma-delimited list. It might even fix your code. – Blender Oct 3 '12 at 15:55
@Blender Yes, that fixed my code, although without the extra space after the comma just (','). Can you please post this as the answer so that I can select it? – Carlos R. Batista Oct 3 '12 at 16:56

1 Answer

up vote 0 down vote accepted

Chrome is probably not parsing your coords string correctly. Your code returns 1, 2, 3,, but Chrome expects 1, 2, 3.

Try using Array.join() to construct the attribute's value:

$('#targetMap').attr('coords', [360,288,470,180,880,180,980,288].join(', '));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.