I am trying to use one of these two jquery plugins ( awkward / Coda Slider 3 ) for sliding div content. Everything works fine until I try to install dynamic content (using js) after creating the plugin object. DIVs show only content downloaded before the plugin was created. Any ideas or other DIV slider plugin for this purpose. Thank.
ajax works fine, I checked it. this is the load function for the coda slider $('#slider-id').codaSlider();
and for the "inconvenient":
$(window).ready(function () {
$("#showcase").awShowcase(
{
content_width: 700,
fit_to_parent: false,
auto: false,
interval: 3000,
continuous: false,
loading: true,
tooltip_width: 200,
tooltip_icon_width: 32,
tooltip_icon_height: 32,
tooltip_offsetx: 18,
tooltip_offsety: 0,
arrows: true,
buttons: true,
btn_numbers: false,
keybord_keys: true,
mousetrace: false,
pauseonover: true,
stoponclick: true,
transition: 'fade',
transition_speed: 500,
transition_delay: 300,
show_caption: 'onhover',
thumbnails: true,
thumbnails_position: 'outside-last',
thumbnails_direction: 'horizontal',
thumbnails_slidex: 0,
dynamic_height: true,
speed_change: false,
viewline: false
});
});
source
share