Grettings,
I need to make direct on page load to apear the fixed menu, not only apear after scroll down the page. Please advice.
jQuery(window).scroll(function() {
var currentPosition = jQuery(window).scrollTop();
if(currentPosition > menupos && !menuWrap.hasClass('active')) {
menuWrap.addClass('active');
menuWrap.find('> div').append(menucontent);
} else if(currentPosition < menupos && menuWrap.hasClass('active')) {
menuWrap.removeClass('active');
if(jQuery('#gkToolbar').length > 0) {
menucontent.insertBefore(jQuery('#gkToolbar'));
} else {
menucontent.insertAfter(jQuery('#gkTopBar'));
}
}
});
jQuery(window).ready(function() {
menuWrap.addClass('active');
menuWrap.find('> div').append(menucontent);
});