Estoy en problemas ya que necesito validar el siguiente formulario generado dinamicamente.
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Jquery Agregar campos</title>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">
contador=0;
function agregar()
{
contador=contador+1;
$('#elementos').append('<div id="divelem_' + contador + '" ><table border="0" width="830"><tr><td width="300"><input type="text" name="nombreElemento[]" id="elemento' + contador + '" size="45" value=""/></td><td width="30"><a href="javascript:borrar_campo(' + contador + ')"><img src="../img/eliminar.png" border="0"></a></td></tr></table></div>');
}
function borrar_campo(registro)
{
$("#divelem_" + registro).remove();
i--;
}
</script>
</head>
<body>
<div id="elementos">
<table border='0' width="830">
<tr>
<td width="300">Emails</td>
<td width="30"><a href="javascript:agregar()"><img src="../img/create.png" border="0"></a></td>
</tr>
</table>
</div>
</body>
</html>