I have a Menu and i am clciking on it using the line
$("#swipecontainer .swiper-slide").eq(centervalue).trigger("click");
But i see that never the event listener is getting fired .
This is my code
$(document).on("click", ".swiper-slide", function() {
alert('i am called');
});
http://jsfiddle.net/cod7ceho/61/
Could you please let me know how to resolve this .