javascript - Jquery ui slider tabs cannot set the property of undefined -


slider tabs have space @ bottom between navigators , content. trying make page responsive when resize window, content size remains same have open new window @ required size , open website ... here using tabs ...

$(document).ready(function(){      var tabs = $("div#myslidertabs").slidertabs({        autoplay: false,        indicators: true,        panelarrows: true,        panelarrowsshowonhover: false,        tabsloop:true,        tabsanimspeed: 800,        responsive:true,        tabsscroll:false,     });  }); 

thanks in advance

may help

var slider = function () {    $("div#myslidertabs").slidertabs({      autoplay: false,      indicators: true,      panelarrows: true,      panelarrowsshowonhover: false,      tabsloop:true,      tabsanimspeed: 800,      responsive:true,      tabsscroll:false,    }); }  // when browser window change size $(window).resize(function () {    slider()  });    $(document).ready(function(){    slider()  }); 

Comments

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -