Mapify
Mapify copied to clipboard
Connection between mapify and a table
Hello,
I'm trying to make a dialog between the map and a table, such as an element that I click on the table, get activated on the map, does anyone know or have any notion of how to do this? From what I researched here in GH, I used some of the things I said. Here's my code I'm trying to do now.
$("#tabela tbody tr th a").on("click",function(event){ event.preventDefault(); var destino = $(this).attr("href"); $("#Map area").eq(destino).focus().focus(); $(".mapify-svg polygon").eq(destino).css("fill","#09f"); });