I need an event listener for detecting a scroll. But it should not be triggered when a scroll is done through my click event in the code below.
How can I do that? Maybe listening to the mousewheel?(But what's about mobile then?)
// I need a scroll listener which is not triggered by the following scroll:
$(leftImageSliders).on('click',function(){
smoothScroll({toElement: this, easing: 'swing', duration: 200, scrollingElement: leftColumn});