I have created Image Map using map co-ordinates and have to highlighted co-ordinates, which is working fine but what i need is, To change the highlight color depends upon th
$(document).ready(function() //on page load
{
$('area').each(function()//get all areas
{
var co=$(this).attr('coords');//get coords by attr from area
alert(co); //alert coords in alertbox
});
});