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);