[Solved] Why are images duplicated with append()?
From the source code on your website, it seems that you might be attempting to remove images from the container before appending new images: $(‘#project_images’).html(”); However, that selector uses an underscore while the actual element uses a hyphen: <div id=”project-images”> Also, you are clearing the contents after appending images rather than before. I suggest using … Read more