If I inject html (iframe containing a video) through javascript is there an event/function that can be used to see if the injected HTML is finished loading?
I tried including javascript at the bottom of the injected content but that is not being executed.
Also I do not plan on using jquery.
If the content is from another domain, all you can capture is the
onloadevent for theiframeitself. That doesn’t tell you the content has rendered, just that it has loaded.