Bootstrap 2 seems to work fine handling the slide event (see this question) with the following code:
$('#myCarousel').bind('slide', function (e) {
console.log('slide event!');
});
I cannot, however, get the same things to work in Bootstrap 3 (see this fiddle). Anyone know why?