Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a form where I'm dynamically adding the ability to upload files with the append function but I would also like to be able to remove unused fields. Here is the html markup

<span class="inputname">Project Images:
    <a href="#" class="add_project_file"><img src="images/add_small.gif" border="0"></a>
</span>
<span class="project_images">
    <input name="upload_project_images[]" type="file" /><br/>
</span>

Right now if they click on the "add" gif a new row is added with this jquery

$('a.add_project_file').click(function() {
    $(".project_images").append('<input name="upload_project_images[]" type="file" class="new_project_image" /> <a href="#" class="remove_project_file" border="2"><img src="images/delete.gif"></a><br/>');
    return false;
});

To remove the input box i've tried to add the class "remove_project_file" then add this function.

$('a.remove_project_file').click(function() {
    $('.project_images').remove();
    return false;
});

I think there should be a much easier way to do this. Maybe i need to use the $(this) function for the remove. Another possible solution would be to expand the "add project file" to do both adding and removing fields.

Any of you JQuery wizards have any ideas that would be great

share|improve this question
Is there a reason you are using project_images as a class and not an ID? – Corey Sunwold Sep 30 '09 at 23:27
2  
Not really, I tend to use classes for elements that may show up more than once on a page and ID for something that's only going to be used once. Here there is no real reason that I'm using a class instead of an ID – BandonRandon Sep 30 '09 at 23:49

1 Answer

up vote 22 down vote accepted

Since this is a rather open-ended question, I will simply give you a rough idea as to how I would go about implementing something like this.

<span class="inputname">
    Project Images:
    <a href="#" class="add_project_file">
        <img src="images/add_small.gif" border="0" />
    </a>
</span>

<ul class="project_images">
    <li><input name="upload_project_images[]" type="file" /></li>
</ul>

Wrapping the file inputs inside li elements allows to easily remove the parent of our "remove" links when necessary.

$('.add_project_file').click(function() {
    $(".project_images").append('<li>'
                              + '<input name="upload_project_images[]" type="file" class="new_project_image" />'
                              + '<a href="#" class="remove_project_file" border="2"><img src="images/delete.gif" /></a>'
                              + '</li>');

    return false;
});

// using live() will bind the event to all future
// elements as well as the existing ones
$('.remove_project_file').on('click', function() {
    $(this).parent().remove();

    return false;
});

edit 5/4/13 Updated live to on as live is deprecated

share|improve this answer
Thank you, thank you thank you! I've never heard of "live" but I see how that can be handy. Also what's the advantage of using a <li> for the file list. Is this so we can remove just the one file upload we want? – BandonRandon Sep 30 '09 at 23:46
Yes, it's so we can easily remove each input individually. It's also a more semantic representation of your content (a list of files). You could just as easily wrap them in span or div tags if you preferred. – Alex Barrett Sep 30 '09 at 23:51
Oh, and live is only a feature in the most recent versions of jQuery (v1.3+) - it's not suprising you haven't heard of it. – Alex Barrett Sep 30 '09 at 23:53
7  
.live is deprecated, should use .on() from now on. – Lukasz May 14 '12 at 2:52

protected by Michael Petrotta Apr 6 '12 at 5:48

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.