internet-explorer-9

Internet Explorer - <img> width not taking effect?

半腔热情 提交于 2019-12-11 03:28:07
问题 I have an issue in IE9 with IMG width, it can be seen here, http://ncms.us/ncms/admin/login the only issue I see is that I'm using ' instead of " for my tags because its within a PHP echo. The main picture up at the header is huge on IE (IE9+IE10 tested.) looks fine in everything but IE. Here is the code that is throwing IE off. I can see why, its very complex and nothing its seen before (-_- lol) <img style='margin-top: -25px;' src='img/ncms_logo.png' width='300' height='250' /> Yay for IE!

Outlines on links in IE9 remains when focus is changed

馋奶兔 提交于 2019-12-11 03:14:43
问题 I have some CSS to change the style of the outline on my page. *:focus{outline: #5ab6df dotted 2px; } But when I tab to different links, part of the outline will remain on previous links. Any help would be appreciated. -IE 9, not running in compatibility mode. 回答1: Have you tried to set the outline-property to none in the *-selector? * { outline:none; } 来源: https://stackoverflow.com/questions/14387672/outlines-on-links-in-ie9-remains-when-focus-is-changed

In IE9, how can I use watir-webdriver to get past the invalid certificate screen?

时光总嘲笑我的痴心妄想 提交于 2019-12-11 03:10:15
问题 This is the screen with the "There is a problem with this website's security certificate." header. Here is the code for the link I'm trying to click: <tr> <td > </td> <td id="continueToSiteAlign" align="left" valign="middle"> <h4 id="continueToSite"> <img src="red_shield.png" ID="ImgOverride" border="0" alt="Not recommended icon" class="actionIcon"><A href='' ID="overridelink" NAME="overridelink" >Continue to this website (not recommended).</A> </h4> </td> </tr> In IE8 with watir, the code

SVG background image in IE9

我的未来我决定 提交于 2019-12-11 03:03:21
问题 I have a strange problem with svg images as background in Internet Explorer 9. I tested following css rules: background-image: url(./grad.svg); /* local file */ background-image: url(http://127.0.0.1:7101/path/to/images/grad.png); background-image: url(http://127.0.0.1:7101/path/to/images/grad.svg); while the first two rules work great, the last one fails. With the F12 Developer Tools it shows (Pending...) for the svg image. Accessing the images directly with their url, they are shown

How to detect that an add-on has been disabled by the user in IE9?

心不动则不痛 提交于 2019-12-11 02:57:10
问题 IE9 users can disable an add-on, such as a browser helper object, by clicking on the cog button and selecting "Manage Add-Ons". I need to detect if a given add-on has been disabled in such way, using JavaScript. I can't seem to find a way for my error handler ( <object ... onerror="myhandler(event)" ) to detect that the BHO has been disabled. errorEvent.type is simply "error" . Is there any way? I need to detect this scenario because just having the webpage try to install the BHO again yields

Spinner in Chrome, IE9 does not become visible during synchronous ajax get request

一个人想着一个人 提交于 2019-12-11 02:34:00
问题 I want my users to see a spinner during ajax request. My spinner works perfectly on Firefox 13. However, in Chrome and IE9 it is not working, although my ajax request takes quite a time. Like 1,2 seconds. $('#fileManager').on('click', '.navSpan', function() { /* show spinner */ $('.fileManager-spinner').show(); /* synchronous ajax fetch and manipulation goes here */ /* hide spinner when done */ $('.fileManager-spinner').hide(); } If I remove $('.fileManager-spinner').hide(); line, it becomes

Force IE8 or IE9 document mode to standards

一曲冷凌霜 提交于 2019-12-11 02:29:46
问题 Ok so sorry for being blunt here but I have been developing on IE 8 and IE9 for the past 2 years and can't seem to get this right. I work at abhor company and develop for their website. For some reason IE8 or IE9 defaults to a lower document mode like ie7 or ie8. I have tried everything... 1) put HTML 5 doctype and nothing else. According to Microsoft this should be enough 2) put html5 doctype and put x-ua-compatible meta tag first in the page under title and set to either edge or IE8 or IE9

Conditional comment in IE 9. Space between comment and conditional statement

六眼飞鱼酱① 提交于 2019-12-11 02:03:57
问题 I'm using the following IE conditional statement to load an IE-specific stylesheet. The statement works in IE 7, 8 and 9 Compatibility View. However, when I viewed the page in plain IE 9, the page was empty. I inspected it in developer tools, and it appears as though the conditional statement never closes, effectively commenting out the rest of the page. <!--[if lt IE 9]><link xmlns="" rel="stylesheet" href="http://colum.edu/Site_Files/localist/css/ie.css" /><[endif]--> After a decent amount

IE9 Refusing to Load custom font?

邮差的信 提交于 2019-12-11 02:03:26
问题 I'm trying to get IE9 to display a custom font. Should be easy... researched plenty of google sites, and even stackoverflow questions. This is what I've got: @font-face { font-family: "BrushstrokePlain"; src: url("../../fonts/BRUSHSTP-webfont.eot"); src: url("../../fonts/BRUSHSTP-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/BRUSHSTP-webfont.woff") format("woff"), url("../../fonts/BRUSHSTP-webfont.ttf") format("truetype"), url("../../fonts/BRUSHSTP-webfont.svg

Internet Explorer 10 box-shadow size

倖福魔咒の 提交于 2019-12-11 01:59:39
问题 Normally I don't bother the small differences in the rendering of box-shadows in different browsers, but in this case the box-shadow size is kind of important. IE9 and IE10 render a smaller box-shadow. Explorer 9 can be fixed with a little larger box shadow using conditional comments, but IE10 appears to have eliminated support for conditional comments. Is there a way of correcting the IE10 box-shadow size and make it a little larger like safari, chrome, firefox? I know it's a little similar