Of all of the times I've used this library, I don't think I've ever used this operation. Here's an example for future usage:
$().SPServices({ operation: "GetAttachmentCollection", listName: "MahAwesomeListName", ID: id, completefunc: function( xData, Status ) { //console.log( Status ); //console.log( xData.responseText ); var output = "" ; //debugger; $( xData.responseXML ).find("Attachments > Attachment").each(function( i, el ) { var $node = $(this), filePath = $node.text(), arrString = filePath.split("/"), fileName = arrString[ arrString.length - 1 ] ; output += "<a href='" + filePath + "' target='_blank'>" + fileName + "</a><br />"; }); $("#drop-zone").html( output ); } });
Cheers,
Matthew