[jQuery] embedded elements and document.ready
Hello
I have a question:
Is there a way to know if a custom plugin is ready to work with?
I have a inhouse build of a video player , don't have the load event
or any other type of event.
i use in html: <embed id='VideoWin1' class='videoWin'
type='application/mozilla-npwindow-plugin' width='150' height='150' />
and in a .js file i added $(document).ready( functions);
this functions contain some logic but sometime when i load the file
the video is embed element is not display or can not work with it
since was not fully loaded.
How can i execute a function after the embed element was loaded or the
document is fully workable?