I'm pretty new to JQuery, as you can tell by my question...
The user can append many new input fields to the form. This works great, but how can they delete a specific field? If they append 5 input fields, how do they delete lets say the third field?
Below is my following code. What is currently does is always delete the first item when clicked.
$("#addNewItem").click(function(){
$("#invoice_items").append('<input type="text" name="name[]" value="name" id="item_name" class="item_name" /><a href="#" id="delete_input"><img src="images/delete.png" /></a>');
});
$("#delete_input").live("click", function(){
$("#item_name").remove();
$(this).remove();
});

idselector. Anidmust be unique within the document. Anyid-based selector will always act on only the first matched element (as JavaScript expects valid HTML, and therefore doesn't look for other elements beyond the first). Use class-names instead if you're selecting multiple elements. – David Thomas Apr 1 '12 at 22:12