If you notice there is no anchors when you load the page :
http://alvarotrigo.com/multiScroll/
but if you scroll down and up again :
/multiScroll/#first appears.
I need ' #first ' on first page load not when I scroll so I can use afterLoad function on page load.
Fiddle https://jsfiddle.net/oadfcjt2/8/
$('#myContainer').multiscroll({
sectionsColor: ['#1bbc9b', '#4BBFC3', '#7BAABE'],
menu: false,
afterLoad: function(anchorLink, index){
if(index == 1){
alert("first");
}
}
});
Any help?Thank you.