JQuery Fügen Sie das Ereignis nach der Seite des Seitenladens hinzu
$(document).load(function () {
// code here
});
-- OR
$(window).on('load', function() {
// code here
});
Valentino_Rossi