after trying every doctype and meta-tag recommended, I couldn't figure out how to disable quirks mode on IE9.
The project has a main jsp and renders dynamically inside of it using .
When I an onkeypress event is fired I get a "HTML1113: Document mode restart from Quirks to IE9 Standards".
I tried using this on every jps, but no luck:
<!doctype html>
<html>
<head>
<meta http-equiv="x-ua-compatible" content="IE=Edge"/>
</head>
...
Maybe the jsp:include implementation uses iframe, in which case I'll never get rid of the quirks mode, or that is what understand about the demonstration in this post Will an iframe render in quirks mode?
Thanks.