On page bottom I got
$(window).one('load', function()
{
$('testdiv').show().fadeOut(750, 'linear');
}).on('load', function()
{
test8();
test9();
}).resize(function()
{
test5();
}).scroll(function()
{
test();
test2();
test3();
});
So for this an example but where or how can I check that whitch one comes one by one about .scroll .resize and .load and .one? Is NOT matter the order for example for .fadeIn is need .hide before to ge it works if set after that not will work.
So im sure some logic have on it.
Thanks