возможно так пойдет
но нужно другой атрибут вместо .attr
$('.butdelet').click(function(){
var iid = $(this).attr("iid");
$.ajax({
type: 'POST',
url: 'delet_processing.php',
data: "prodid="+iid,
dataType:"html",
cache: false,,
success: function(data) {
location.reload();
},
error: function(xhr, str){
alert('Возникла ошибка: ' + xhr.responseCode);
}
})
});