jQuery.fn.toggle = function(){
this.each(function(){
var me = jQuery(this);
me.prepend(
jQuery('<span>↑ </span><span class="error">Ошибка: </span>')
);
me.css('cursor', 'pointer').bind('click', function(e){
//alert(me.attr('idd'));
var p13_lh14 = $('div.p13_lh14:has(textarea#'+me.attr('idd')+')');
p13_lh14.slideToggle('fast', function(){
if($(p13_lh14+':hidden')){
me.find('span:first').html('<span>↓ </span>');
}else{
me.find('span:first').html('<span>↑ </span>');
}
});
});
});
return false;
}
$(document).ready(function(){
$('textarea').resizer();
$('h1').toggle();
$('h1 span.error').hide();
});
вот тут участок с if - как правильно его сделать?
если такое, или приписывать скрытому блоку какойнить атрибут и потом по нему проверять?