Picker de fuseau horaire HTML
function timezoneSelect(){
var options = [],
select = document.createElement("select");
for (var i=0; i<tzs.length; i++){
var tz = tzs[i],
option = document.createElement("option");
option.value = tz.value
option.appendChild(document.createTextNode(tz.label))
select.appendChild(option)
}
return select;
}
Handsome Hornet