I've been doing a lot of research into Twitter's Embedded Timelines. I've been trying to figure out if it is possible to know when the timeline is finished loading and displays on the page. This issue has been requested, but has yet to be implemented. I have come to a dead end an am hoping someone is able to help me find the solution. Here is what I have found so far:
The code to add an Embedded Timeline:
<a class="twitter-timeline" href="https://twitter.com/twitterapi" data-widget-id="YOUR- WIDGET-ID-HERE">Tweets by @twitterapi</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
What happens when the script is run:
The script replaces the
<a>
tag with an<iframe>
element.The contents of the
iframe
are ready, but the avatar image and the 'follow @username' button are not done downloading. Theiframe
'sheight
attribute is set to 0 so that you don't see the content without the images.The avatar image is downloaded, but the 'follow @username' button is still downloading. Content is still not visible.
The 'follow @username' button is finished downloading. The
iframe
'sheight
attribute is set to match the height of the contents of theiframe
. The timeline is now visible.
Now, I've tried everything I can think of to figure out when the timeline is visible (without using settimeout/interval). The goal is to have a non-polling event/function/callback. Here is what I have tried so far without success:
- Setting event listeners on the
iframe
(such asonload
,DOMContentLoaded
,DOMFrameContentLoaded
, etc) to know when the content has finished loading. This doens't work becuase theiframe
has nosrc
attribute. After going through the uglified code (I was unable to find an uncompressed version), my guess is that it is using writes to add the content to the body of theiframe
. - Setting event listeners to know when the
height
attribute changes on theiframe
. Theoretically, this event should fire three times: first when the content loads, second when theheight
is set to 0, and third when theheight
is set to show the fully loaded timeline. However, I was only able to get the event to fire for the first two cases and never for the third (the one I actually wanted). I usedDOMSubtreeModified
,onreadystatechange
, andonpropertychange
, but onlyDOMSubtreeModified
worked for firing the event. - Setting event listeners on the cotents of the
iframe
. Because JavaScript can reach inside of theiframe
from Twitter, it is possible to grab any element inside theiframe
(such asdocument
orwindow
). However, addingonload
,DOMContentLoaded
, orDOMFrameContentLoaded
event listeners on thewindow
ordocument
of theiframe
still does not fire those events. - Setting event listeners on the 'follow @username' button. The button is actually an
iframe
that does have asrc
attribute. By setting anonload
event, it will get fired when it is loaded. However, theonload
event will always fire twice. The first time when it has finished downloading and the second when it has finished processing. Immediatly after the second trigger, the timeline will be shown. To implement this is quite the hack though (I guess everything is) since you must wait for the contents of theiframe
to load, reach inside and get the 'follow @username'iframe
, set anonload
event on it, then wait for the second event to fire. - Using the
twttr.widgets.createTimeline()
function, which has an optional parameter for a callback. However, the callback is called when the content is ready (step 2), but not when the iframe is visible (step 4).
There's probably a few more combinations I forgot at this point. I know there exists a github gist that uses the Twitter widget.js
, but adds callbacks to it. I was unable to get this to work.
Sorry for the log question, but I hope someone is able to help. Thanks.
You could try using the Javascript factory instead of attribute binding. The createTimeline method returns a promise so you can chain your post load activities there. See the twitter documentation: https://dev.twitter.com/web/embedded-timelines/parameters
When you copy and paste the code you get from Twitter, you have to replace this:
With this:
Of course, the doSomething function called above is your callback that runs when your embedded timeline loads and renders.
Also, I guess this solution doesn't work in Internet Explorer since it doesn't support onLoad events for script elements. Yet there are solutions for that.
Last, you can see my approach to this issue in the Twitter embedded timeline scraper I wrote.
I'm gonna post my solution here even if it's been 1month just in case someones finds this post again, what I had to do was to poll until the iframe had a width > 1 as an indicator for callback