Create New Img Tag with jQuery from JavaScript Object



To create a new img tag in JavaScript, pass an HTML string to the constructor,

var myImg = $('<img id="dynamic">');

$(document.createElement(myImg));
myImg.attr('src', responseObject.imgurl);

You can also use the following code to create a new img tag with the attributes like src, id, etc −

var myImg = $('<img />', {
   id: 'id1',
   src: exampleimg.png',
   alt: 'Alt text'
});
Updated on: 2020-06-23T12:06:14+05:30

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements