[This][1] is the link of my json file and i want to access its data into my ajax success function. tell me how can i do this?
$.ajax({
      type: "GET",
      url: "abc" + imageId,
      dataType: "json",
      success: function (d) {
             alert(imageId);
             var storyImage = d.data;
             alert(storyImage);
      }
 })
 
     
     
    