Hola Mary, no se si es esto exactamente lo que quieres pero mir a ver:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html;
charset=UTF-8">
<script src="jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#annadirEnlace').click(function(){
var value= $("#url").val();
var ruta="http://"+value;
tds = '<tr>'
+'<td>'+value.link(ruta)+'</td>'
+'<td><a name="borrarFila"
href="javascript:void(0);">Borrar</a></td>'
+'</tr>'
$('table#enlaces').append(tds);
});
$('table#enlaces a').live('click',function(e){
e.preventDefault();
});
$('table#enlaces
a[name="borrarFila"]').live('click',function(){
$(this).parent("td").parent("tr").remove();
});
});
</script>
</head>
<body>
<a href="javascript:void(0);" id="annadirEnlace">Añadir</a>
<form action="index.html">
<input type="text" id="url" name="url">
<input type="submit">
</form>
<div class="annadir">
<table id="enlaces">
<thead>
<tr>
<th>Url</th>
<th>Acción</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</body>
</html>
Un Saludo