$(document).ready(function(){
   $("a.delete").click(function () {
	  var li = $(this).parent();
	  $.ajax({
		url: "inc/removefromlist.php",
        data: ({id : this.getAttribute('id')}),
        success: function(response){
	  	  if (response == '0') { 
		  	window.location = "downloadlijst.php"; 
		  } else {
		  	$(li).slideUp(0);
		  	if (response != 'x') {
		 	  $("#listcount").html(response);
		  	}
		  }
		}
	  });
   });
});
