Lo que me gusta, me interesa y me motiva…
RSS icon Home icon
  • 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();
                   
    }