Srollify.js and Meteor

I am trying to implement scrolling transitions to the next part of the web page as demonstrated here:

This first method didn’t work for me:
<head> <script> $(function() { $.scrollify({ section : "section", }); }); </script> </head> <body> <section></section> <section></section> </body>

So I also tried creating a separate js file in client > lib

Template.templateName.rendered = function(){ $.scrollify({ section : ".section-name", }); };

and applied this to a div with a class .section-name

I’ve been stuck on this for a while so thanks ahead of time for you help!

Hi @postitabroad could you prepare a demo on guthub with the code you have tried already. Otherwise anyone wants to help needs to prepare a setup for you.