internet-explorer-9

IE9 input/button element border color issue

大兔子大兔子 提交于 2019-12-08 04:50:38
问题 In the site I am currently building I am having trouble getting my border colors right for <input> and <button> elements. I would like to have the top, left, and right borders to be the same color and then have the bottom border a different color. I can get the styling to work for any other element to work except for those two, and this issue only exist in IE9. Any help or explanation would be greatly appreciated. Example of my problem: http://jsfiddle.net/NyG3x/24/ 回答1: Try setting to

IE 9 Clears Form Fields

允我心安 提交于 2019-12-08 04:41:38
问题 This is a really strange issue that I cannot seem to solve. On a WordPress site, I have several forms (login, registration, and other) outputted on a site via short codes. When the forms are submitted, their data is processed via an "init" hook that listens for the $_POST data. Note, the site is running WordPress, but I have deemed this to not be a WordPress issue, which is why I'm posting here. When the forms are submitted in IE 9, all fields are cleared of the values when clicking submit.

Step 4 in one page checkout for magento not working in IE 9

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-08 04:23:31
I already tried forcing compatibility mode to IE8 and it does not seem to work. Seems like steps 1-3 work fine but then when I got to select credit card info, nothing responds to my clicks... the cardtype does not drop down a selection and none of the inputs are selectable. Has anyone seen this? Nicholas Piasecki We had this problem and forcing IE8 compatibility as described in my answer to this question fixed it. Of note, the position of the meta tag at the top of the head is important. The other way around it, apparently, is to have more than one payment method. (There have been some reports

springboot- react application not working in internet explorer 11 and 9

落爺英雄遲暮 提交于 2019-12-08 04:11:18
问题 My react app is not working on Internet explorer 11. It is working fine on edge and chrome. when I connect my application through Node.js, react build folder it is working fine IE 11 and 9. through node server port it is working. now I'm using spring boot but it is not working in IE11 and 9. I have deployed my react app in IIS. I have created my application through npx create-react-app .( As pointed out in the other answers for similar questions) I have included this in both my index.js file

How to get rid of black artifacts on text when using dropshadow filter in IE9

扶醉桌前 提交于 2019-12-08 03:15:41
问题 Image CSS below. I need a red color heading with a #f2f2f2 shadow. It look ok in Chrome and Firefox but in IE it show litte black artifacts on the edges of every letter. Is there a better way to make this shadow? h1 { color: red; text-shadow: 3px 3px 0px #f2f2f2; filter: progid:DXImageTransform.Microsoft.dropshadow(color=#f2f2f2, offX=3, offY=3); } 回答1: You could use a rule like this for IE9 h1 { color: red; background-color: #cccccc; text-shadow: 3px 3px 0px #f2f2f2; filter: progid

Difference between quirks mode and standards mode JavaScript

吃可爱长大的小学妹 提交于 2019-12-08 03:07:53
问题 Are there any differences in the JavaScript of these two modes in IE 9? If yes, what are they? 回答1: IE9 standards document mode supports ECMAScript, Fifth Edition features, so the method such as forEach , every , map of Array and defineProperty , keys of Object are support well. more about IE9 standards document mode supports enhanced DOM programmability. (may not what you're interested in, but it does so). more about IE9 removes some of the key differences between IE8 JavaScript

is it possible display: inline-flex in IE 9?

大憨熊 提交于 2019-12-08 02:48:12
问题 is it possible to Workaround for display:inline-flex in IE 9 <div style="display:inline-flex"> Test </div> 回答1: I understand from your question, that you are aware of the fact that IE9 does not support flexbox . A polyfill for flexbox, named flexie.js, does exist (not maintained afaik), but it works using the old 2009 syntax of flexbox. Using the old syntax is of course not recommended, since the 2009 syntax is really outdated and many browsers won't recognize it anymore. But , you can try to

Selenium JavascriptExecutor on IE9 results in 'element was not scrolled into the viewport' error

[亡魂溺海] 提交于 2019-12-08 02:14:52
问题 I'm trying to use a JavascriptExecutor to open a new tab in IE9 from selenium webdriver: public void openTab() { String url = webDriver.getCurrentUrl(); String script = "var a=document.createElement('a');a.target='_blank';a.href='" + url + "';a.innerHTML='open';document.body.appendChild(a);return a"; Object element = getJSExecutor().executeScript(script); if (element instanceof WebElement) { WebElement anchor = (WebElement) element; anchor.click(); } else { throw new RuntimeException("Unable

POST getting converted to GET across OS

白昼怎懂夜的黑 提交于 2019-12-08 01:59:37
问题 I'm facing a very weird kind of problem while running my application. When I hit a website and login to my application, the POST is getting converted to GET automatically. Since all the request parameters are getting lost due to this, the page shows up an error screen. This issue happens in IE-8 (Windows 7), but works absolutely fine in IE-8(Windows XP). How is the OS involved in this? Have anyone faced such issues? This issue happens in IE-9 as well. Kindly refer to this issue as well. Any

VLC ActivX plugin not playing video in update IE9

霸气de小男生 提交于 2019-12-08 00:29:34
问题 I am using vlc ActiveX plugin on web browser IE9 to play video live streaming. Its work perfect in IE8 but when I update browser from IE8 to IE9 than it not playing video file or live straming. here is my code. <object type="application/x-vlc-plugin" id="vlc" width="517" height="388" classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921"> <param name="MRL" id="mrlVideo" value="" /> <param name="volume" value="50" /> <param name="autoplay" value="True" /> <param name="loop" value="false" />