• 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

Php - Sum up the numbers in an array one by one

loop through an anchor id

Execute only one time and then wait set period of time before executing again

Alert message after submitting form in PHP

how to make my own auto increment in php?

How can I get new CSRF token in LARAVEL by using ajax

Custom API and cunsuming in php?

PHP array slice from position + attempt to return fixed number of items

javascript html popup window

PHP each() function replacement

Log file is not being written in Laravel 5.5

Transpose multidimensional array and join values with commas

Insert multidimensional array to codeigniter cart

Laravel Model save() & update() Not Saving

Autoloading classes in PHPUnit using Composer and autoload.php

About Contact Privacy policy Terms and conditions