Error de jQuery "No se puede leer la propiedad 'defaultView' de undefined"
Estoy usando jQuery para publicar un campo de formulario en un archivo PHP que simplemente devuelve 1/0 dependiendo de si funcionó o no ...
Extracto del 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");
}
});
Sin embargo, cada vez que tiene éxito (html == 1) la consola arroja el error "Error de tipo no capturado: no se puede leer la propiedad 'defaultView' de undefined" y la alerta nunca ocurre ...?
Google no parece tener mucha información sobre este error y jQuery, ¿quién sabe la causa?