Skip to content Skip to sidebar Skip to footer

Getting Page Content Via Wrapper In Wp To Slide In

I'm trying to have my Wordpress content, when visiting the homepage, navigating to the other pages - have the content slide down from the top subtly with jQuery on page load. Curre

Solution 1:

It might have to do with the way you're hiding the content. You might be better off just using jQuery to show the content with animation by getting rid of the "top" and transitions and instead doing

$(document).ready(function(){
    $("#wrapper").show("slow",function(){});
});

Post a Comment for "Getting Page Content Via Wrapper In Wp To Slide In"