Friday 14 May 2004 12:26:57 pm
If you look at the src: http://dean.edwards.name/IE7/src/ The lines:
// html, xml, qirks mode?
var isXML = Boolean(ownerDocument.mimeType == "XML Document");
var isHTML = !isXML;
var quirksMode = Boolean(ownerDocument.compatMode == "BackCompat");
I changed to:
// html, xml, qirks mode?
var isXML = false;
var isHTML = !isXML;
var quirksMode = false;
For some reason the ownerDocument variable doesnt seem to be available. This was a quick hack, which made it work for me. I hope this allows you to get it to work. Im away for a week on holidays now :) Paul
-- http://www.visionwt.com
|