PluginProbe
Adminimize / 1.7.17
Adminimize v1.7.17
1.11.14 1.11.13 1.11.1 1.11.10 1.11.11 1.11.12 1.11.2 1.11.3 1.11.4 1.11.5 1.11.6 1.11.7 1.11.8 1.11.9 1.3 1.4.7 1.6 1.7.12 1.7.13 1.7.14 1.7.15 1.7.16 1.7.17 1.7.18 1.7.19 All 53 releases
adminimize / js / writescroll.js

writescroll.js in Adminimize 1.7.17, at js/writescroll.js

13 lines 371 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Automatically scroll Write pages to a good position
3 * code by Dougal Campbell
4 * http://dougal.gunters.org/blog/2008/06/03/writescroll
5 */
6 jQuery(function($) {
7 // element to scroll
8 var h = jQuery('html');
9 // position to scroll to
10 var wraptop = jQuery('div#wpbody').offset().top;
11 var speed = 250; // ms
12 h.animate({scrollTop: wraptop}, speed);
13 });