JavaScriptjQuery
How to create a new img tag with JQuery, with the src and id from a JavaScript object?
In jQuery, a new element can be created by passing a HTML string to the constructor, as shown below:
var img = $('<img id="dynamic">'); //Equivalent: $(document.createElement('img')) img.attr('src', responseObject.imgurl); img.appendTo('#imagediv');
I hope it will help you.