controlsContainer : "", //{UPDATED} Selector: USE CLASS SELECTOR. Declare which container the navigation elements should be appended too. Default container is the FlexSlider element. Example use would be ".flexslider-container". Property is ignored if given element is not found.
jQuery(document).ready(function($) {
//add some elements with animate effect
$('.cta a').addClass("animated shake");
$('.cta a').removeClass("animated shake");
$(this).find('.icon').addClass("animated bounce");
$(this).find('p').addClass("animated bounce");
$(this).find('h4').addClass("animated bounce");
$(this).find('.box-bottom').addClass("animated pulse");
$(this).addClass("animated pulse");
$(this).find('.icon').removeClass("animated bounce");
$(this).find('p').removeClass("animated bounce");
$(this).find('h4').removeClass("animated bounce");
$(this).find('.box-bottom').removeClass("animated pulse");
$(this).removeClass("animated pulse");
$('.accordion').on('show', function (e) {
$(e.target).prev('.accordion-heading').find('.accordion-toggle').addClass('active');
$(e.target).prev('.accordion-heading').find('.accordion-toggle i').removeClass('icon-plus');
$(e.target).prev('.accordion-heading').find('.accordion-toggle i').addClass('icon-minus');
$('.accordion').on('hide', function (e) {
$(this).find('.accordion-toggle').not($(e.target)).removeClass('active');
$(this).find('.accordion-toggle i').not($(e.target)).removeClass('icon-minus');