Hi, I found this post in the forum: https://theme.co/apex/forums/topic/using-jquery/
And the minimal example you provide works for me to run jquery. Now, when I want to add Waypoint JS, I can’t get the basic examples to work. I used the jquery.waypoint.min.js as well as the noframework.waypoints.min.js.
Could you please have a look and check what might be wrong? Thanks in advance.
JS:
jQuery(function($){
$('.notify').waypoint(function(direction) {
alert('Top of notify element hit top of viewport.');
});
});
HTML:
<span class="notify">From here</span>