• Categories
    • PHP
    • phpMyAdmin
    • PHPMailer
    • FFMpeg
    • PHPEXcel
    • PHPDoc
    • PHPUnit
    • CakePHP
    • CakePHP 2.0
    • Cake PHP 2.1
    • CakePHP Model
    • Facebook PHP SDK
    • composer-php
    • PHP 7
    • PHP GD
    All Categories
  • About

Best way to scrolldown onpageload

javascriptphpjqueryasp.netjquery-events


PHP Snippet 1:

    $(document).ready(function() {
        window.scrollTo(0, 100);
    }

PHP Snippet 2:

function Scrolldown() {
 window.scroll(0,100); 
}

window.onload = Scrolldown;

PHP Snippet 3:

<body onLoad="Scrolldown()">

PHP Snippet 4:

function Scrolldown(){
window.scroll(0,100); 
}

Related Snippets

Laravel eloquent update record without loading from database

How to convert a carbon into string, to take the date only?

CodeIgniter force_download is not working

Server-sent events in PHP (without echo or print)

Show Custom Data in Woocommerce Order Details Admin Area

Confirm Leave on External Links in Wordpress

How to increase the PHP upload limits [duplicate]

Check if string contains a value in array [duplicate]

Prevent blank space in pdf pages (DomPdf)

Laravel Mix Uncaught ReferenceError: $ is not defined

How to send parameters in soap request in php in __soapcall() function

Woocommerce Edit Message "An account is already registered with your email address. Please log in."

laravel sanctum Route [login] not defined

Redis Command To Sort Keys

Symfony autowiring issues since docker update

About Contact Privacy policy Terms and conditions