jquery fadein display new page

Solutions on MaxInterview for jquery fadein display new page by the best coders in the world

showing results for - "jquery fadein display new page"
Meryem
04 Oct 2017
1$(document).ready(function(){
2
3/*! Fades in page on load */
4$('body').css('display', 'none');
5$('body').fadeIn(500);
6
7});