I have created an image gallery grid and trying to output the images. I have attempted putting the path in var thumb ="path";
and then concatenating it to the json_data
but the path to the image cannot be read. Any ideas?
function ajaxfunction(json_data){
var path = "images/products/shirts/smallthumbs/"; // path to image
var url = "#";
var table = $("<table></table>");
var tr = $("<tr></tr>").appendTo(table);
for (var i = 0; i < json_data.length ; i++){
if (i %4==0)
tr = $("<tr></tr>").appendTo(table);
$(tr).append("<td>"+json_data[i].prod_name+"<br/>"+
" " + "<a href="+url+"><img src="+path+json_data[i].pic"/></a>"+"<br/>"+ //attempting output
"\u00A3"+json_data[i].price+"</td>");
}
$("#maindisplay").append(table);
}