I have a peculiar situation where I am only given control of the contents of a document's <body>. The host, I assume in an effort to remain flexible, is not declaring a doctype which will throw IE into quirks mode immediately. With my limited control over the document, what can I do to force IE to render the page in standards mode?
|
|
|
I believe you can't do anything about it unless you say, rewrite the contents of the page dynamically with JS and forcefully insert a doctype. Can you go into specifics of how much control you have over the EDIT: Here's an attempt but I didn't test it in IE. It may give you ideas. I You may need to strip out the script block upon rewrite. Like I said, I wouldn't really recommend trying this... http://medero.org/first-line.html EDIT #2: It seems to surprisingly work in IE6. But upon refresh, IE caches it somehow and it permanently stays in its Again, I'm not sure what your situation is, but I hope this gives you ideas or helps. EDIT #3: I rewrote it and bound the http://medero.org/rewrite.html?f30324433322111 If you need something more instantaneous you can probably jack jQuery's DOM ready function to rewrite it before the window loads.
|
|||||||||||||
|
|
Have a look at this Defining Document Compatibility article on MSDN. Perhaps writing out the |
|||||
|
|
Here's how I managed to solve it, based on meder's answer. I first tried writing out the At the end of the document (or in the head, but I didn't have access to that either):
The inner |
||||
|
|