Uri: location.href verhindert AJAX-Request

Beitrag lesen

Hi,

Ich möchte einen AJAX-Request schicken und im Anschluss location.href machen. Wenn ich kein location.ref mache, dann funktioniert mein Ajax-Request, sobald ich location.href mache, wird meine Anfrage verhindert.

function delete_item(){
    var containsID=reverseString($(location).attr('href')).split("/");
    var id = containsID[1];
    var xhr = new XMLHttpRequest();
    xhr.open('DELETE', '/buildings/' +id)
    xhr.send();
    //window.location.href = "/buildings";
}

Kann ich machen, dass location.href nur bei Erfolg ausgeführt wird?

Danke Uri