Buenos dias amigos,
por favor tengo este script:
Código php:
Ver original<!-- <script language="javascript" type="text/javascript">
function funcion_uno()
{...
}
function funcion_dos()
{...
}
</script>
</head>
<body>
<form action="" onsubmit="return (funcion_uno() && funcion_dos());">
<...>
<input type="submit" name="input_submit" value="BORRAR"> ////BORRAR/////
<input type="submit" name="input_submit" value="ACTUALIZAR"> ////ACTUALIZAR///////
</form>
</body>-->
Como decirle al sistema??? que al dar click en submit:
a. BORRAR, me valide SOLO la funcion_uno /////FUNCION UNO///////
b. ACTUALIZAR, me valide SOLO la funcion_dos /////FUNCION DOS////////
Agradesco de antemano la respuesta k me puedan brindar.