Javascript DOM
Javascript DOM
JavaScript y el DOM
2
Índice
<script>
window.onload = function () {
var form = document.getElementById( "myForm" );
form.addEventListener( "submit" , function (event) {
var txt = document.getElementById( "txt");
if (!txt.value) {
alert( "You should provide some value to text input" );
txt.focus();
return event.preventDefault();
}
});
}
</script>