Here is my html
<div id="setImgWrap">
<!-- Here append image will be show -->
</div>
and here i am appending from js
this.addedImages = {
imageURL : self.downloadURL
};
this.$.setImgWrap.append('<iron-image src="' +[[this.addedImages.imageURL]] + '"></iron-image>');
I want to show all uploaded image on browser, but this is showing whole tag in side the double quotes. How to i can show multiple images ?