¡@

Home 

2014/10/16 ¤W¤È 12:03:00

jquery Programming Glossary: div.container_16

smooth transition between pages when redirecting with jquery

http://stackoverflow.com/questions/5630166/smooth-transition-between-pages-when-redirecting-with-jquery

2000 function window.location data.redirect My next page has a javascript in the header like this jQuery function div.container_16 .first .hide .grid_16 .first .hide div.container_16 .first .fadeIn 2000 .grid_16 .first .slideDown 4000 This almost work.. next page has a javascript in the header like this jQuery function div.container_16 .first .hide .grid_16 .first .hide div.container_16 .first .fadeIn 2000 .grid_16 .first .slideDown 4000 This almost work except for a few milli sec where the second page loads.. share improve this question A simple fix to this would be CSS body display none JS jQuery function 'body' .show div.container_16 .first .hide .grid_16 .first .hide div.container_16 .first .fadeIn 2000 .grid_16 .first .slideDown 4000 You should know..