Redirecionar após o POST usando o cabeçalho Location com jQuery

Eu quero redirecionar para o alvo usando oLocation cabeçalho com jQuery 1.7.

Meu código se parece com isso

$('#creationLink').click(function(){
  $.ajax({
    type: 'POST',
    url: '/',
    success: function(data, textStatus, xhr) {
      window.location = xhr.getResponseHeader("Location");
    }
  })
});

... mas não funciona.xhr.getResponseHeader("Location") é nulo.

Cabeçalhos HTTP:

POST / HTTP/1.1
Host: localhost:9000
X-Requested-With: XMLHttpRequest
Content-Length: 0

HTTP/1.1 302 Found
Content-Type: text/plain; charset=utf-8
Location: http://localhost:9000/vIRdD0PdWp4/bearbeiten
Content-Length: 0

Como posso redirecionar usando o cabeçalho de localização?

questionAnswers(1)

yourAnswerToTheQuestion