Skip to content

Instantly share code, notes, and snippets.

@hmowais
Created July 13, 2022 07:08
Show Gist options
  • Select an option

  • Save hmowais/f726027be072158425cd3b9a4033dc5d to your computer and use it in GitHub Desktop.

Select an option

Save hmowais/f726027be072158425cd3b9a4033dc5d to your computer and use it in GitHub Desktop.
Add Sticky Header class in Elementor
jQuery( document ).ready(function($) {
jQuery(window).scroll(function($){
if ($(this).scrollTop() > 80) {
$('header.elementor-section').addClass('StickyHeader');
} else {
$('header.elementor-section').removeClass('StickyHeader');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment