como digo solo rompe el if, no el action
Código HTML:
<script language="javascript">
function guardar() {
.
.
.
.
if ($("#provi").attr("value") =="9999") {
alert('seleccione provincia');
return false;
} else if ($("#pobla").attr("value") =="99999") {
alert('seleccione población');
return false;
} else if ($("#catego").attr("value") =="0") {
alert('seleccione categoria');
return false;
} else if ....
....
}
.
.
.
.
.
}
</script>
<html>
<form action="guardar.php" onsubmit="guardar()" id="forma" name="forma" enctype="multipart/form-data" method="post">
.
.
campos del form
.
.
<input type="submit" id ="guardar" name="guardar"class="botonNaranja" value="Guardar" >
</form>
</html>