I have a mistake that I am trying to narrow down, and this proves that it is a doozie. I am doing modal overlay and in IE8 for some reason I can click through, the focus inputs and select the text under it.
in IE9, FF, Chrome, everything works as expected. unfortunately, the small test file that I hit together (shown below) works fine in IE8. Has anyone encountered this error before? hoping to save time. thanks!
<!DOCTYPE html> <html> <head> <style> div { background: pink; position: fixed; height: 100%; width: 100%; top: 0; left: 0; opacity: 0.5; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; } </style> </head> <body> <input type="text" /> <div></div> </body> </html>
source share