0
I have the problem in jQuery, tells me that affix is not a function, I have done everything I know and more and yet I could not fix it. Can help me?
jQuery(document).ready(function($){
if ( ($(window).height() + 100) < $(document).height() ) {
$('#cta-buttons-wrapper').removeClass('hidden').affix({
offset: {
top: 100
}
});
}
});