anteriormente (en Explorer) para que al acabar de escribir algo en un texbox pudieses pulsar intro y equivaliese a clickar encima de un botón hacíamos la función:
Cita:
Cómo se haria para q funcione en todos los browsers??? function intro(e) { //in case of being pressed the "insert" key, the page will be automatically submitted. Thus, is not necessary to click the "Accept" button
tecla=(document.all) ? e.keyCode : e.which;
if(tecla==13) {
window.event.keyCode=0;
validate();
}
}
tecla=(document.all) ? e.keyCode : e.which;
if(tecla==13) {
window.event.keyCode=0;
validate();
}
}