$(function () { $(window).on('load resize',function(){ //autoscrolling(); }); function autoscrolling(){ var $ww = $(window).width(); if($ww < 640){ $.fn.fullpage.setautoscrolling(false); $.fn.fullpage.setlockanchors(true); $.fn.fullpage.setfittosection(false); } else { $.fn.fullpage.setautoscrolling(true); $.fn.fullpage.setlockanchors(false); } } //autoscrolling(); });