Código HTML:
Ver original<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="jquery-1.6.4.min.js"></script> <link href="style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript"> emails=0;
function agregar() {
emails=emails+1;
$("#campos").append('
<li class="email'+emails+'"> <input type="text" name="email['+emails+']" size="25" /> <a href="#" onclick="javascript:borrar('+emails+');">Borrar
</a> </li>');
}
function borrar(cual) {
$("li.email"+cual).remove();
return false;
}
<form name="frm_multiple" method="post" action="procesar.php"> <input type="text" size="20" name="email[0]" /><a href="javascript:agregar();">Agregar
</a> <li id="campos"><!-- aqui se crean los CAMPOS --></li>
<p align="center"><input type="submit" name="Send" value="Send" /></p>
fijate asi