garand / sticky

jQuery Plugin for Sticky Objects
Other
3.3k stars 1.06k forks source link

Event Doesn't Fire #230

Open obiPlabon opened 8 years ago

obiPlabon commented 8 years ago

sticky-bottom-reached and sticky-bottom-unreached event doesn't fire. I'm trying to create a bottom sticky navigation. I've tried your given example snippet

$('#sticker').on('sticky-bottom-reached', function() { console.log("Bottom reached"); });
$('#sticker').on('sticky-bottom-unreached', function() { console.log("Bottom unreached"); });

but it didn't work. Could you please take a look.

Thanks