Had a question before that was partially solved. I'm having trouble getting just one part of it to work.
preload = new Element('iframe', {
'src': URL,
'id': mediaId,
width: mediaWidth,
height: mediaHeight,
scrolling : 'no',
'frameborder': 0
});
preload.style.visibility = 'hidden';
startEffect();
}
So my issue is the preload.style.visibility = hidden.
I'm trying to make it so iframe is hidden until completed. I think Onload is the right command for that. So what is the equivalent to the preload.style.visibility = 'hidden'; line to get it to work? Thanks!