Код: $(document).ready(function () { var offset = $('#but_fix').offset(); var elem1 = document.getElementById("but_fix"); var topPad = window.getComputedStyle(elem1, null).getPropertyValue("bottom"); var gg = topPad; var pixfix = topPad.replace(/px$/,''); var z = -pixfix; $(window).scroll(function() { if ($(window).scrollTop() < offset.top) { $('#but_fix').stop().animate({marginBottom: z }); } else { $('#but_fix').stop().animate({marginBottom: 0}); } }); }); ie8 Ругается на getComputedStyle как его сделать кросс браузерным?