In internet explorer I get this on every page on my site "done but with errors on page". The error is with the colorbox module and code that has to do with something called Scriptaculous
Message: Exception thrown and not caught
Line: 458
Char: 8
Code: 0
URI: http://mysite.com/sites/default/files/js/js_Ov1Eyiqs6Mt5-p__fuWPmVZS0MXW...
this is the code, line 458 "throw("Script.aculo....":
var Scriptaculous = {
Version: '1.8.1',
require: function(libraryName) {
// inserting via DOM fails in Safari 2.0, so brute force approach
document.write('
<\/script>');
},
REQUIRED_PROTOTYPE: '1.6.0',
load: function() {
function convertVersionString(versionString){
var r = versionString.split('.');
return parseInt(r[0])*100000 + parseInt(r[1])*1000 + parseInt(r[2]);
}
if((typeof Prototype=='undefined') ||
(typeof Element == 'undefined') ||
(typeof Element.Methods=='undefined') ||
(convertVersionString(Prototype.Version) <
convertVersionString(Scriptaculous.REQUIRED_PROTOTYPE)))
throw("script.aculo.us requires the Prototype JavaScript framework >= " +
Scriptaculous.REQUIRED_PROTOTYPE);
$A(document.getElementsByTagName("script")).findAll( function(s) {