i am currently working on a social networking website ,on front page it has a jquery accordion with following options
$( "#accordion" ).accordion({
autoHeight: false,
animate:"fast",
active: false,
collapsible: true });
,each section of accordion has either a iframe[iframe or object or embed] containing video from different sources like youtube,vimeo,dailymotion,bliptv,scribd(doc) etc or images from flickr ,imgur etc wrapped in
<div class="embed-container"></div>
within .ui-accordion-content
On page load all these iframe and images starts loading and make page really slow what i want is
1) Stop content of embed-container div from loading completely on page load
2) when a particular accordion section opens ,then embed-container div of that section should load
3) when accordion section closed ,embed-container div iframe or images should cease all loading
so far i have tried this
$('.embed-container').hide();
$('.ui-accordion').bind('accordionchangestart', function(event, ui) {
ui.newContent.find('.embed-container').show();
ui.oldContent.find('.embed-container').hide();
});
Looking for a Crossbrowser solution(ie7+,ff3+,chrome) Thanks