You can use the live() function to bind to each instance of an element on the page, present and future. This saves you having to rebind.
$("a.removeLink").live("click", function() {
$(this).next("input").remove();
}
daddywoodland
2009-09-10 22:49:26