IE7 and the CSS table-cell property

I’ve solved this using jQuery: $(document).ready(function(){ if ($.browser.msie && $.browser.version == 7) { $(“.tablecell”).wrap(“<td />”); $(“.tablerow”).wrap(“<tr />”); $(“.table”).wrapInner(“<table />”); } }); the above script assumes you have divs using style such as: <style> .table { display: table; } .tablerow { display: table-row; } .tablecell { display: table-cell; } </style>

How to launch an EXE from Web page (asp.net)

This assumes the exe is somewhere you know on the user’s computer: <a href=”https://stackoverflow.com/questions/916925/javascript:LaunchApp()”>Launch the executable</a> <script> function LaunchApp() { if (!document.all) { alert (“Available only with Internet Explorer.”); return; } var ws = new ActiveXObject(“WScript.Shell”); ws.Exec(“C:\\Windows\\notepad.exe”); } </script> Documentation: ActiveXObject, Exec Method (Windows Script Host).

filter: progid:DXImageTransform.Microsoft.gradient is not working in ie7

Having seen your fiddle in the comments the issue is quite easy to fix. You just need to add overflow:auto or set a specific height to your div. Live example: http://jsfiddle.net/tw16/xRcXL/3/ .Tab{ overflow:auto; /* add this */ border:solid 1px #faa62a; border-bottom:none; padding:7px 10px; background:-moz-linear-gradient(center top , #FAD59F, #FA9907) repeat scroll 0 0 transparent; background:-webkit-gradient(linear, left … Read more

Bang IE7 – What does it mean?

I have heard of this before, but not with the exact text !ie7. I found a reference here: http://www.javascriptkit.com/dhtmltutors/csshacks3.shtml !ie Internet Explorer 7 fixed one of the issues with the !important identifier, but it still has problems when the identifier has an error in it. If an illegal identifier name is used in place of … Read more

What bug does zoom:1; fix in CSS?

This provides an internal property known as hasLayout in Internet Explorer versions 7 and lower. The definitive article on the subject is here: http://www.satzansatz.de/cssd/onhavinglayout.html A lot of Internet Explorer’s rendering inconsistencies can be fixed by giving an element “layout.” In this article, the authors focus on some aspects of this complicated matter. “Layout” is an … Read more

Web Browser component is IE7 not IE8? How to change this?

It appears you need to fiddle with the registry as per this article: – http://blogs.msdn.com/ie/archive/2009/03/10/more-ie8-extensibility-improvements.aspx To run a WebBrowser control in IE8 Standards Mode, use the following new value into the registry: [(HKEY_CURRENT_USER or HKEY_LOCAL_MACHINE)\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION] “MyApplication.exe” = dword 8000 (Hex: 0x1F40) To run in IE7 Standards Mode, use the following registry value: [(HKEY_CURRENT_USER or … Read more

tech