estoy generando las option de un select con js y ejecuta las funciones en ie y firefox pero no en chrome y no lo entiendo.
Cuando genero en lugar de un select un div normal si funciona y ejecuta la funcion en todos los navegadores.
en el html tengo esto
Código HTML:
<select id="markerlist"> </select>
Código Javascript:
Ver original
var panel = $('markerlist'); var title = document.createElement('OPTION'); title.value = [i]; title.innerHTML = titleText; panel.appendChild(title); var fn = speedTest.markerClickFunction(speedTest.pics[i], latLng); google.maps.event.addListener(marker, 'click', fn); google.maps.event.addDomListener(title, 'click', fn); speedTest.markers.push(marker);