$.fn.informer = function(option){
var settings=$.extend({
alertMessage: 'Внимание!',
timeOut: 3000
}, option);
return this.each(function(){
$(this).html(settings.alertMessage);
setTimeout(function(){
$(this).hide();
}, settings.timeOut);
});
}
Блок с текстом появляется. А почему не получается его спрятать посредством setTimeout? Выдается ошибка a.ownerDocument is undefined