@jinmollr: Here is a small hack (some php which outputs some javascript on frontpage) which allows overriding the current scroll animate speed of 1200
with another value. If you set it e.g. to 1
, it scrolls very fast and appears like a jump.
Add this to your function.php
file:
function zerif_jump_instead_scroll_hack() {
if ( is_front_page() ) {
?>
<script type="text/javascript">
(function(){
var orig = jQuery.fn.animate;
jQuery.fn.animate = function(){
if ( this.selector && this.selector == 'html,body' ) {
if ( arguments.length == 2 && arguments[1] == 1200 ) {
arguments[1] = 1; // set new animate speed here
}
}
orig.apply( this, arguments );
}
})();
</script>
<?php
}
}
add_action( 'wp_footer', 'zerif_jump_instead_scroll_hack', 999 );
No warranties, only tested with latest FireFox and Chrome, maybe it helps…