$(document).ready(function() { $("#texteZone").text("Information et nouvelles"); $(".iconeBarreZones li").hover(function() { var c = $(this).find("a"); var d = c.attr("data-name"); var a = c.attr("data-color"); var b = c.attr("data-infobulle"); $("#texteZone").text(d); $("#texteZone").css("color", a); cacherInfobulles(); if (b != "aucune") { $(b).show() } }, function() { var b = $(".iconeBarreZones").find(".selection").find("a"); var c = b.attr("data-name"); var a = b.attr("data-color"); $("#texteZone").text(c); $("#texteZone").css("color", a); cacherInfobulles() }); googleAnalytics() }); function cacherInfobulles() { $(".tooltipContent").hide() }
