Le code est:Google Maps V3 InfoWindow modifier leur opacité par jquery
function bindInfoWindow(marker, map, infoWindow, html) {
google.maps.event.addListener(marker, 'click', function() {
infoWindow.setContent("<div id='window'>" + html + "</div>");
}
et
var html = "<b>" + title + "</b> <br/><b>" + country;
et je veux lorsque le pays est au Royaume-Uni ou des États-Unis pour changer l'opacité du #Fenetre div ou infoWindow
Y at-il un moyen de le faire avec jQuery?
thnx