I am trying to add slide event to carousel but its not firing up
<div id="background-carousel">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="item active" style="background-image:url('images/Home BG 1.jpg')"></div>
<div class="item" style="background-image:url('images/Home BG 3.jpg')"></div>
<div class="item" style="background-image:url('images/home_bg2.jpg')"></div>
</div>
</div>
</div>
my javascript but its not working and not showing any alert on image slide
$( document ).ready(function() {
$('#myCarousel').carousel({
interval: 4000
});
$('#myCarousel').on('slide', function () {
alert("Slide Event");
// console.log('slid event');
});
});