I would like to remove a tag with the class of '.de'.
$('.de').remove();
will remove it from the page but when I check the source code, then I still see the tag.
The problem that I have is, the following tag needs to be removed from the form, otherwise it will get sent and that's not what I want.
<input class="input_field_left de" name="friend_vorname[]" type="text" placeholder="Vorname">
Or maybe there is another way to not let this field get sent?!