I need to get an image by json
to appear in my modal but the modal appears but the image does not
Here is my code
$("#estoque1").click(function(){
$('#estoqueModal').modal('show');
$(".modal-body").innerHTML += '<img src="' + dadosJSON.estoque.imgModal + '">';
});