Indicates whether the document is rendered in Quirks mode or Standards mode.
mode = document.compatMode
"BackCompat"
if the document is in quirks mode;"CSS1Compat"
if the document is in no-quirks (also known as "standards") mode or limited-quirks (also known as "almost standards") mode.mode
Note: all these modes are now defined in standards, so the older "standards" and "almost standards" names are nonsensical and no longer used in standards.
if (document.compatMode == "BackCompat") { // in Quirks mode }
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/document/compatMode