Index: trunk/extensions/SemanticForms/libs/SemanticForms.js |
— | — | @@ -688,7 +688,8 @@ |
689 | 689 | } |
690 | 690 | ); |
691 | 691 | |
692 | | - jQuery(this).parent().remove(); |
| 692 | + // Remove the encompassing div for this instance. |
| 693 | + jQuery(this).parents(".multipleTemplate").remove(); |
693 | 694 | }); |
694 | 695 | |
695 | 696 | // Enable autocompletion |
— | — | @@ -765,7 +766,8 @@ |
766 | 767 | }); |
767 | 768 | |
768 | 769 | jQuery(".remover").click( function() { |
769 | | - jQuery(this).parent().remove(); |
| 770 | + // Remove the encompassing div for this instance. |
| 771 | + jQuery(this).parents(".multipleTemplate").remove(); |
770 | 772 | }); |
771 | 773 | jQuery(".autocompleteInput").attachAutocomplete(); |
772 | 774 | jQuery(".sfComboBox").combobox(); |