I have a flv file inside the vid.html which is working fine, but is there any way to have the video itself to fadeIn/fadeOut?
<div id="fadeit">
<div class="video"></div>
</div>
this does not work;
$('.video').hide().fadeIn().load('vid.html');
wrapping it in a div and fading the div does not work either;
$('#fadeit').hide().fadeIn(1400);