I have incorporated Fullpage.js along with the Scrolloverflow plugin in my template:
$('#fullpage').fullpage({
scrollOverflow: true,
afterRender: function() {
$("nav").on("click", "a", function() {
...
}
}
});
The official website suggests using event delegation to handle content wrapped by the Scrolloverflow plugin. However, I am facing an issue as the click
event is not functioning in my example. Any suggestions on how to resolve this?