Screen Content Performance
Using the widget
You can now display this Screen Content Performance widget on your own website.
Once embedded, your widget will automatically show the latest results every time we update the data.
Box office title lists are updated weekly – usually on a Monday. Box office shares are updated periodically.
The widget can be used wherever you can embed an HTML iframe.
Simply copy the code below and paste it into your page:
<div><iframe frameborder="0" id="bow-iframe" scrolling="no" src="https://box-office-widget.twistedpear-wgp.workers.dev" style="border:none; width:100%; display:block;" title="Box Office Widget" width="100%"></iframe></div>
<script type="text/javascript">
(function() {
var iframe = document.getElementById('bow-iframe');
window.addEventListener('message', function(e) {
if (e.data && typeof e.data.height === 'number') {
iframe.style.height = e.data.height + 'px';
}
});
iframe.addEventListener('load', function() {
iframe.contentWindow.postMessage('ping', '*');
});
})();
</script>