Gustavo Peiretti
Lo que me gusta, me interesa y me motiva…
-
Invocar al evento OnChange
function agregarValor(valor){
// seteo un valor
document.getElementById(‘idInputValor’).value = valor;
// pongo el foco del curso en el input
document.getElementById(‘idInputValor’).focus();
// invocar onchange
document.getElementById(‘idInputValor’).onchange();
}

