Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
added 124 characters in body
Source Link
ShankarSangoli
  • 69.9k
  • 13
  • 96
  • 124

Try this.

$(function(){ $(window).resize(function(){ if($(windowthis).width() ==>= 768){   jQuery('#info').containedStickyScroll({   duration: 0,   unstick: false   });   } }) .resize();//trigger resize on page load }); 

Try this.

$(function(){ if($(window).width() == 768){ jQuery('#info').containedStickyScroll({ duration: 0, unstick: false }); } }); 

Try this.

$(function(){ $(window).resize(function(){ if($(this).width() >= 768){   jQuery('#info').containedStickyScroll({   duration: 0,   unstick: false   });   } }) .resize();//trigger resize on page load }); 
Source Link
ShankarSangoli
  • 69.9k
  • 13
  • 96
  • 124

Try this.

$(function(){ if($(window).width() == 768){ jQuery('#info').containedStickyScroll({ duration: 0, unstick: false }); } });