$(document).ready(function(){ $(".slide_txtarea h2").addClass('animated slideInLeft'); $(".slide_txtarea p").addClass('animated slideInRight'); $('.carousel-inner').each(function(){ $(this).html($(this).html().replace(/ /gi,' ')); }); }); $(".carousel").swipe({ swipe: function(event, direction, distance, duration, fingerCount, fingerData) { if (direction == 'left') $(this).carousel('next'); if (direction == 'right') $(this).carousel('prev'); }, allowPageScroll:"vertical" }); $('.carousel').carousel({ interval: 1000 });