Question

I am trying to create a flex slider. Where we have button at the top, when the user selects any button the content below it changes using the flex slider, my flexslider is working but I am not able to pass parameter into the jquery to change content.

currently my flexslider js is :

$(document).ready(function()
{

  $(window).load(function(){
      $('.cmsslider').flexslider({
        animation: 'slide',
        selector:'.slidercontent .row',
        animationLoop:true,
        slideshow:false,
        controlsContainer: ".container",
        controlNav: true,
        manualControls: "#thumbnail img",
        slideshowSpeed: 700
      });
    });

});
Was it helpful?

Solution

Maybe you're looking for something like:

$("#someBtn").click(function(){
    $(".cmsslider").html("//new content here");
});
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top