internet-explorer-9

IE9 checkbox state change form submit back button does not show correct state

做~自己de王妃 提交于 2019-12-24 11:35:29
问题 I have a form with a few checkboxes. Each time I check/uncheck one box form is submitted. Relevant code: $("input[name='checkboxgroup']").bind("click",function(e) { e.preventDefault(); ... ... form.submit(); }); However when I click back button on IE9 it shows all my checkboxes still checked( Expected: checkbox last checked before Back button should've been unchecked) The backend sends data to check/uncheck checkbox whenever page reloads. I have verified that last checkbox clicked before Back

HTML5 javascript not working in frameset

我们两清 提交于 2019-12-24 10:47:11
问题 I have a page which is hosted in someone elses frameset, however it's all on the same domain ( my content is uploaded to their server via a service). WHY they are using a frameset is an argument for another day, however. They will not change their markup, so I have to find a workaround that can work in my code. I've found a bizarre problem in my test case that might help me if I can solve it. This is only a problem in IE as usual. The wrapper frame looks like this (complete with unquoted

IE9 web control not redrawing itself in CHtmlView

别来无恙 提交于 2019-12-24 09:58:57
问题 This is an old MFC application which implements some tabbed frame windows. Only one CView is shown at any time in the frame, when switching tabs the following code is used to hide the old tab content and display the new one: oldview->EnableWindow(FALSE); oldview->ShowWindow(SW_HIDE); newview->EnableWindow(TRUE); newview->ShowWindow(SW_SHOW); newview->SetFocus(); Now this all worked nicely for any kind of CView-s, including CHtmlView-derived ones, but stopped working when IE9 was installed on

Flash object appears over jQuery Fancybox in IE9

南笙酒味 提交于 2019-12-24 07:14:40
问题 I am usng osCommerce latest version, I am using the Fancybox jQuery plugin for product images. In IE9 when we click an image, the jQuery lightbox appears. In my website header I am using a flash animation, The problem is that the flash animation appears front of the jQuery light box in IE9. In other browsers, it's working well. Please help me fix this. Please see the image: http://i46.tinypic.com/2gujmnc.png 回答1: Set wmode="opaque" to your flash objects in the background. Check for reference

IE9 causes all webpage text to render as Italic when font-family:'Goudy OldStyle'

允我心安 提交于 2019-12-24 06:45:22
问题 I just downloaded and installed IE9 and used it on our intranet web pages. This problem only occurs when the font-family is set to Goudy Old Style. When I changed the font-family to Verdana the page rendered properly( that is according to the stylesheet). The problem does not occur in Firefox. It didn't help to specify font-style:normal in the default BODY style. When I inspect the dom object in the developer mode I can see the style applied to the object and it matches what is in the

Disable the minimize button in Internet Explorer IE9

半世苍凉 提交于 2019-12-24 06:44:31
问题 I can use window.open resizable=no to disable/grey out the maximize button, but when I try to use dialog=yes,minimizable=no the minimize button won't grey out/disable, Please help me find a way to disable this minimize button, Thanks! I want to apply this setting to a kiosk computer because I dont want user to minimize their browser and leave their credential open for the next person 回答1: "Dialog" and "Minimizable" are not valid options. You cannot, and should not, prevent a user from being

Add a child node to an inline SVG with JavaScript. Imposible on IE9?

狂风中的少年 提交于 2019-12-24 04:06:33
问题 I just want add a new text node in a SVG on a html using accion() javaScript function: <!DOCTYPE> <html> <body> <head> <script type="text/javascript"> function accion(){ var SVGDocument = document.getElementById("idSVG"); var text2 = SVGDocument.createTextNode("text"); SVGDocument.appendChild(text2); } </script> </head> <input type="button" onclick="accion()" value="GO!!"/> <svg id="idSVG"> <text id="texto" x="50" y="35" font-size="14">PRUEBA</text> </svg> </body> </html> But SVGDocument

Force IE9 to use Browser mode not Compatibility mode

不羁岁月 提交于 2019-12-24 00:59:17
问题 I am using <meta http-equiv="X-UA-Compatible" content="IE=edge"> in head tag. But, when I am running my application on IE9, then it is using Browser Mode : IE9 Compat View . I want my application to use only Browser Mode : IE9 , not Compat view. 回答1: I realize I'm a bit late on this but here's what I have used and it has worked for me: <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> Make sure this is the FIRST meta tag in the head of your document (I put it directly after the

`ie9` - contenteditable false not working when parent editable

淺唱寂寞╮ 提交于 2019-12-24 00:39:18
问题 I am trying to make a content editable and non-editable containers. the user can use this as 3 ways. they can put content with non-editable they can put the content with editable they can put the content without selecting one of this. (editable) I am trying to achieve this as follows: #content{ border:1px solid red; height:100px; } .subContentNotEdit{ background:#87a476; } .subContentEdit{ background:#ffd5d5; } <div id="content" contenteditable=true> <div class="subContentNotEdit"

$(window).height() fails on IE9

浪子不回头ぞ 提交于 2019-12-24 00:07:42
问题 Sorry,I am not sure it is suitable to ask this question here.But this question has bother me for a long time. I tried to use $(window).height() to get visible area height of whole page. I works fine on almost every browser.But it acts weird under IE9 and it's compatibility mode.When I drag the border of browser window and tried to resize it,the value of $(window).height() become larger and larger,even if I tried to make the window smaller. I tried some other method like document