(function($){
$.fn.littleResize = function(){
maxHeight = 0;
if( !/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile |Opera Mini/i.test(navigator.userAgent) ) {
this.each(function() {
if ($(this).height() > maxHeight) {
maxHeight = $(this).height();
}
});
$(this).height(maxHeight);
}
}
}(jQuery));
Вот вроде бы он, но я не могу понять, чего он не работает, тобишь почему появляется прокрутка
|