I use Durandal (requireJS + knockoutJS) with jQuery
jquery 1.10.2 + knockoutjs 2.3.0 + requirejs
even a simple code won't work
$('#table1').scroll(function(){
alert('');
});
even fadeOut(); fadeIn() are not working
but EACH function is working properly
$('.items').each(function(){
$(this).css("display","none");
});
any guess? thanks
It may be that the problem is you're trying to scroll a table itself. Scrolling a div works for me. You'll get an alert when you try to move the scrollbar.