I use json data with jquery... I have filepaths in json and i am iterating with jquery...
var divs='';
$.each(jsob.Table, function(i, user) {
divs += '<a class="download" href=' + user.resume_path + '/>'
});
$("#ResultsDiv").append(divs);
It works but how to make my anchor open file/save
dialog box where the admin can download that resume... Any suggestion...