Load page into div. Animation timing not work
Hi, I jst did little webpages, with navigation that calls function for load custom pages in div
- function changePage(Id){
- $("#content-page").fadeOut(200);
- $("#content-page").load("content_page.php", {id: Id}, function(){ $("#content-page").fadeIn(200)});
- }
- <div id="aboutnavi" class="active" onclick="changePage(this.id);">About</div>
- <!-- CONTENT-PAGE -->
- <div id="content-page"></div>
- <!-- CONTENT-PAGE -->
Problem is in timing of fade out - load content - fade in. In my case it going to load content - fade out - fade in.
What I am doing wrong? Or is it normal?