hello
Server : Apache/2.4.52 (Ubuntu) System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : servadmin ( 1000) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE Directory : /www/docs/www.obu.edu/wp-content/plugins/gravityforms/js/ |
// change the menu position based on the scroll position
window.onscroll = function() {
var toolbar = jQuery( '#gf_form_toolbar' );
var floatMenu = jQuery( '#floatMenu' );
if( window.XMLHttpRequest && toolbar.length > 0 ) {
var basePosition = toolbar.offset().top;
if( document.documentElement.scrollTop > basePosition || self.pageYOffset > basePosition ) {
floatMenu.css( { position: 'fixed', top: '40px' } );
} else {
floatMenu.css( { position: 'static', top: '40px' } );
}
}
}