Auto scroll to id on page load on all pages except home page. Only do this on mobile

Some thing like this work for you:

jQuery(document).ready(function($){
                        if ( $(window).width() < 768 || window.Touch) { 
                            $('html, body').animate({
            scrollTop: $("#primary").offset().top
        }, 2000);
                        } 
    });