Ajax call works, and deletes the file via unlink, however success is not called. I'm using this same exact ajax function elsewhere, only it is with the .click() event, not .live(). Could that be the issue?
$('.picture_delete').live("click", function() {
$.ajax({url: 'UrlWithArguments,
async: false, success: function () { alert("YAY!"); }
});//json });
This is the only relevant line of code being executed:
unlink($deleteMe);