Remove tabindex of google maps on my page
I need to remove the tabindex map on my page. I used the code below, but the tab goes through the markers on the map and the Google logo.
var map = new google.maps.Map(document.getElementById('map'),
mapOptions);
//Remove o TAB do mapa
google.maps.event.addListener(map, 'tilesloaded', function() {
var mapContent = (document.getElementById("map"));
mapContent('a').attr('tabindex',-1);
});
+3
source to share
2 answers