diff --git a/jsonp-fu/jsonp-fu.js b/jsonp-fu/jsonp-fu.js index df24ac2..4da3307 100644 --- a/jsonp-fu/jsonp-fu.js +++ b/jsonp-fu/jsonp-fu.js @@ -20,7 +20,8 @@ var jsonpfu = {}, */ if (!('console' in window)) { window.console = { - log: function () { } + log: function (msg) { }, + error: function (msg) { } }; } @@ -61,6 +62,8 @@ var jsonpfu = {}, callback = function () {}; } + log("loading url " + url); + new_script.type = 'text/javascript'; new_script.src = url; new_script.onload = function () {