jQuery добавить событие после загрузки страницы
$(document).load(function () {
// code here
});
-- OR
$(window).on('load', function() {
// code here
});
Valentino_Rossi