I set the blog text on my page to opacity 0, so that it disappears to opacity 1 when the page loads with this code.
$(document).ready(function(){
$('.entry').animate({opacity:1},700);
});
the text only fades in chrome, in firefox the text is already set to opactiy 1 without a visible fade effect. I tried to put the code in the footer, but the text remains visible when the page loads. I know for me. I have to do it with a filter.
source
share