Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Due to the Content Security Policy of manifest version 2, I have to separate the script from the html code. I want to add a loading bar to the iFrame in the options page. However, I got finished loading before start loading, and never receive error messages even if the link is broken. Anyway posible ways to fix these two bugs?

In options.html file,

<div class="like-div">
<iframe class="like-iframe" src="https://example.com"></iframe>
</div>
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/IFrameHelper.js"></script>
<script type="text/javascript" src="js/like-iframe.js"></script>

In IFrameHelper.js,

var IframeHelper = (function () { 
return {
    onErrored: function (source) { 
        alert(source +' failed to load'); },
    onLoaded: function (source) {
        alert('start loading'); },
    onReady: function (source) {
        alert('finished loading'); }
 } }());

In like-iframe.js,

$(".like-iframe").load(IframeHelper.onLoaded)
            .error(IframeHelper.onErrored)
            .ready(IframeHelper.onReady);
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.