page: www.eveo.org
My page doesn't load, but it does output to console from the file which is supposed to fade my site in.
http://eveo.org/js/init.js line 37-43
$body = $('body');
$body.fadeIn(1000, function() {
$('.about p').fadeIn(500, function() {
$('.about footer').fadeIn(500);
});
});
However, it seems to put a few console.logs that I have further down in the file. When I view the url http://eveo.org/js/init.js after navigating to it from eveo.org, and hitting back, my website loads. If I just go straight to eveo.org it doesn't load and execute the above javascript.
Really at a loss, never had a problem like this.