javascript - Video Player not displaying inside of collapsible div -


i using video player display reel people on website making, though not display if div set display:none; , toggled jquerys .slidetoggle()

this toggle code.

    $('.button').click(function() {         $('#containerdiv').slidetoggle();     }); 

this video player using: http://codecanyon.net/item/ultimate-video-player/7694071

html:

    <div class="button">         <span class="title">title</span><span class="name">name</span>     </div>     <div id="containerdiv" class="reel"><!--there bunch of omitted code here--></div> 

its should noted player loaded through javascript , not part of original dom structure, , think why having problems.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -