* The Internet-Explorer stumbles, when feeded with JavaScript-code that
includes the leading "<!--", that is often used to deter older browsers
from executing the code. Therefore this markup is filtered from the code
before it is executed via jQuery.globalEval(). The trailing "//-->" does
not have to be filtered, because it is a valid JavaScript-comment.
* A global variable "OA_output" is defined, because IE 8 would complain
loudly otherwise.
result = /src\s*=\s*['"]([^'"]*)['"]/i.exec(src);
if (result == null) {
/** script-tag with inline-code: execute inline-code! */
+ result = /^\s*<.*$/m.exec(inline);
+ if (result != null) {
+ /** Remove leading HTML-comments, because IE will stumble otherwise */
+ inline = inline.slice(result[0].length,inline.length);
+ }
$.globalEval(inline);
}
else {
}
} ( window.openx = window.openx || {}, jQuery ));
+
+var OA_output = {}; // << Needed, because IE will complain loudly otherwise!