In console.log it printing url alone and also it doesnot showing image in my webpage
my JSON data
"image":{
"path": "../image/Penguins.jpg",
"width": 200,
"height": 200
},
my script
$(document).ready(function () {
var tran = null;
$.ajax({
type: "GET",
url: "../data/data.json",
dataType: "Json",
success: function (msg) {
var image1 = msg.image.path;
console.log(image1);
$("#abc").append(image1);
})