Screen Options JavaScript Code

This is in wp-admin/js/common.js or wp-admin/js/common.min.js:

// Scroll into view when focused
$('#contextual-help-link, #show-settings-link').on( 'focus.scroll-into-view', function(e){
    if ( e.target.scrollIntoView )
        e.target.scrollIntoView(false);
});

Found with a search for show-settings-link in the complete source. 🙂