Validacion Simple por Javascript de Formulario

function validar(){ if (document.form.campo.value=="") //este es para validar campos de texto { alert( "Ingresar un valor"); document.form.campo.focus(); return false; } if (document.form.select.selectedIndex=="0") //este es para validar selects { alert( "Seleccione el Estado del Ejecutivo"); document.form.select.focus(); return false; } }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.