does not work in Firefox 4
Status: Beta
Brought to you by:
cbajax
Firefox 4 does not read the script inserts like old style FF
please see http://hsivonen.iki.fi/script-execution/
script must be appended.
However simple fix, change the create-script function to look like this:
this.createScript = function( _parent, _id, _request )
{
setTimeout(
function(){
var _script = document.createElement('script');
_script.type = 'text/javascript';
_script.setAttribute('async', 'true');
_script.src = _request;
document.body.appendChild(_script);
}, 5);
}
Tested in alot of browsers (including old version of IE), has yet not failed.
also makes it work in some browsers in which the old
version did not for example Konqueror
Uncompressed_CBA.js_patched
As i said in the bug
simple fix. attached is the patched version.
Tested and works:
Chrome,Opera,IE6,IE8 ,IE8 (compability mode),IE9,FF1,FF3,6,FF4,Safari,Safari for windows,Safari for ipodtouch,and some old versions of netscape
Also works great in some less known browsers like Konqueror,Avant,Rockmeit,
and my S8000 cell phone. (WebKit-based Dolphin browser)
Do i need to point out the obvious that it does not work despite my fix in any browsers which does not execute JS like Links or Lynx or stone age browsers
If you find a browser (with JS support) in which the script does not work please report in bug! If you have tested more browsers please comment!