$( document ).ready(function() { var topimgpst = -30; $(window).on('scroll', function(){ if ( $('body').width() > 500 ){ if ( $('body').scrollTop() ) { $('[id="topimage"]').css( 'background-position', '50% '+ ( topimgpst + Math.round( $('body').scrollTop() / 3.3 ) ) +'px' ); } else { $('[id="topimage"]').css( 'background-position', '50% '+ ( topimgpst + Math.round( $('html').scrollTop() / 3.3 ) ) +'px' ); } } }); });