I have a container in where content should load from different php files.
So I have this:
$('ul#menu li a').click(function(){
var page = $(this).attr('href');
$('#wind').load('pages/'+ page +'.php');
return false;
});
the page content loads into the div and everything looks nice but it appears instantly and just looks wrong, is there a way to append fadeIn() somehow?
Have the div
#windhidden at first then within the callback function of.load()fade it in.