jQuery Erro "Não é possível ler a propriedade 'defaultView' de indefinido"

Estou usando o jQuery para postar um campo de formulário em um arquivo PHP que simplesmente retorna 1/0, dependendo se funcionou ou não ...

Extrato do código:

$.ajax({
    url: "ajax/save_text.php", //Relative?!?
    //PHP Script
    type: "POST",
    //Use post
    data: 'test=' + $(this).val(),
    datatype: 'text',
    //Pass value       
    cache: false,
    //Do not cache the page
    success: function(html) {
        if (html == 1) {
            $(this).hide().siblings('span').html($(this).value).show();
                    alert("awesome!");
        } else alert('It didn\'t work!');
    },
    //Error
    error: function() {
        alert("Another type of error");
    }
});

No entanto, sempre que for bem-sucedido (html == 1), o console lança o erro "Uncaught TypeError: Não é possível ler a propriedade 'defaultView' de undefined" e o alerta nunca acontece ...?

O Google parece não ter muita informação sobre esse erro e o jQuery, quem sabe a causa?

questionAnswers(1)

yourAnswerToTheQuestion