HEX
Server: Apache
System: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User: ws67301310 (67301310)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /homepages/4/d4297730999/htdocs/wordpress/wp-content/plugins/gravityforms 2_/js/floatmenu_init.js
var name = "#floatMenu";
var menuYloc = null;
var disableFloat = false;
jQuery(document).ready(function(){
	menuYloc = parseInt(jQuery(name).css("top").substring(0,jQuery(name).css("top").indexOf("px")))
	jQuery(window).scroll(function () {
        if(disableFloat)
            return;
		offset = menuYloc+jQuery(document).scrollTop()+"px";
		jQuery(name).animate({top:offset},{duration:500,queue:false});
	});
});