Advertisement
arie_cristianD

manualy enable the sticky sidebar with additional margin top

May 26th, 2025
700
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function ($) {
  2.     "use strict";
  3.  
  4.     $(function () {
  5.         var sticky = $('.jeg_sidebar')
  6.         sticky.theiaStickySidebar({ additionalMarginTop: 85 })
  7.         if (sticky.parents('.jeg_double_sidebar,.jeg_double_right_sidebar').length > 0) {
  8.             window.addEventListener('resize', function () {
  9.                 if (window.innerWidth >= 992) {
  10.                     sticky.trigger('theiaStickySidebarActivate')
  11.                 } else {
  12.                     sticky.trigger('theiaStickySidebarDeactivate')
  13.                 }
  14.             })
  15.         }
  16.     })
  17.  
  18.  
  19. })(jQuery);
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement