I have a view in node-view mode that has another view (a view slideshow) embedded into that view. I am using jquery and setTimeout to slideDown the hidden div that contains the view a few seconds after the page loads. The problem that I am running into is when the div slides down to show the view, the slideshow is not showing.
Here’s my jquery
Drupal.behaviors.landing = function (context) { if($('#portslide-wrap').children().children().next().hasClass('portfolio-direct')){ setTimeout( function getSlide(){ $('#portslide-wrap:not(.landing-processed)', context).addClass('landing-processed').each(function(){ $('#portslide-wrap').slideDown(); $.scrollTo('165','0'); Drupal.attachBehaviors(context); }); } ,700) }; }