Catalogue
script:
img elements do not have href attributes. If you want the image to act as a link you have a couple of options. You could wrap the img in an a element:
$("#pdf1img").wrap("");
Or you could bind a click event handler to the image and use window.location:
$("#pdf1img").click(function() {
window.location.href = "/Content/pdf/" + data.pdf1;
});