internet-explorer-9

ASP.NET Web Forms - Button not working inside <iframe> in IE9 and below

廉价感情. 提交于 2019-12-25 03:58:24
问题 I have an ASP.NET Web Forms page that has a form in it and I load it in an <iframe> as a popup. In all modern browsers it works great. In IE9 and below, however, things are weird. One file input element failed to open the file selection dialog when clicking on its browse button. After fixing this (with a JS trick), I saw another problem. Another button inside the form with this attribute for postback: onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("btnUpload", "

Primefaces <p:printer> inside a Dialog is not Working in IE?

ぐ巨炮叔叔 提交于 2019-12-25 02:47:41
问题 I am using JSF 2.0 ,Primefaces 3.5 & JBoss Application Server 7.0.. In my Online Shopping Application , i am trying to print the details of the Order(My Code). Everything is working fine in Chrome and FireFox, but in IE9 and above it is throwing an error "Internet Stopped Working" and the print is been failed! How to fix this issue ? Doubt: Is the issue because of using a Dialog Box. Or is it a Browser compatibility Issue. Is there any Other Way to Achieve this ? My Code: MyController import

Dynamic HTML rendering issue in IE9 only

戏子无情 提交于 2019-12-25 01:43:36
问题 I have this nasty rendering issue in IE9 only, IE8 & IE7 works fine as the rest of the browsers. http://jsfiddle.net/65Zsv/ Open the demo in IE9 and hover over the image. The problem is that in IE9 the text located under the image renders with artifacts. I was able to resolve the bug by forcing IE9 into IE8 compatibility mode, but still this got stuck in my mind and I am looking for a real resolution. P.S. I don't have IE10 installed and I wonder if the bug will be there as well... 回答1: This

IE vertical centering bug with table-cell parent and absolutely positioned pseudo-element

戏子无情 提交于 2019-12-25 01:14:56
问题 I'm building a flexible progress-bar with a number of constraints. It needs to be able to contain any number of items within it, have these items all be the same width, vertically centered, support content of varying lengths, work in IE9 and above and have an icon next to them without any additional markup. display: table-cell seemed to be the most appropriate solution for the potentially unlimited number of items inside as well as vertically aligning the text nicely, and :before would take

IE9 Quirks mode doesn't pass event parameter to event handler

冷暖自知 提交于 2019-12-25 00:27:43
问题 I have a problem with the IE9 quirks mode. I have registered an oncahnge-event to an input element. This works so far, but in IE9 our site goes to quirks mode (it is as it is) and there I have the problem, that the browser doesn't pass the event-Object into my handler method. document.getElementById("foo").onchange=myChangeMethod; function myChangeMethod(event){ //In IE 9 quirks mode "event" is undefined... if(event != undefined){ //do stuff } } This can be tested in IE10 (i suppose als in

Place Cursor on Input Number box when tab is pressed

流过昼夜 提交于 2019-12-24 19:10:11
问题 I have the below HTML input type Number HTML: <input type=“number” class=“reqField” id=“number1” placeholder=“Enter Number only/> <input type=“number” class=“reqField” id=“number2” placeholder=“Enter Number only/> JS: function focusInNumber (id) { var thisID = id; var nextID = id + 1; var preID = id - 1; clearTimeout(numberReturn); $(“#number” + thisID).prop(“disabled”, false); placeCursor($(“#number” + thisID)); } function focusOutNumber (id) { var thisID = id; var nextID = id + 1; var preID

Internet Explorer 9 Object Detection

一世执手 提交于 2019-12-24 15:46:17
问题 I am searching for an object detection capability check which will identify IE9. Can you help me? 回答1: Check out this snippet by James Padolsey: // ---------------------------------------------------------- // A short snippet for detecting versions of IE in JavaScript // without resorting to user-agent sniffing // ---------------------------------------------------------- // If you're not in IE (or IE version is less than 5) then: // ie === undefined // If you're in IE (>=5) then you can

html5 video plays on all browsers except IE9

人走茶凉 提交于 2019-12-24 14:16:12
问题 I wanted to post this question and answer because I wasn't able to find it anywhere. So if you are playing with HTML5 <video> on the different browsers make sure the rest of your HTML is valid such that your video will play on IE9. The following code works on Chrome 19, Firefox 12, Opera11, as well as iOS5 but NOT IE9: <video controls="controls"> <source src="video.mp4" type="video/mp4" /> <source src="video.ogg" type="video/ogg" /> Your browser does not support the video tag. </video> 回答1:

Issue with opening .exe in ie9

我只是一个虾纸丫 提交于 2019-12-24 12:30:42
问题 Has anyone come across this problem...On our intranet site we have a link (a button) that launches and .exe in a separate popup window. With ie it bypasses the open/save dialog box and just opens. Firefox and Chrome actually have you download the .exe before you run it. Well since some of us have upgraded to ie9 when you launch the .exe it takes about 3 minutes to open(and I wish I was exaggerating on the time). Has anyone encountered this, and does anyone have any advise? 回答1: In our

appendChild with SVG brings a HIERARCHY_REQUEST_ERR (3) in IE9.0

你离开我真会死。 提交于 2019-12-24 12:12:07
问题 The following code works fine in chrome and Firefox, but breaks in IE 9.0 //select div where svg is to be inserted var selSVG = document.getElementById('SVGMap'); //clear any SVG while (selSVG.hasChildNodes()) { selSVG.removeChild(selSVG.lastChild); } //add the new svg selSVG.appendChild(loadXML("roomlayouts/"+SelectedRoomAddress)); with loadXML(...) returning an svg document from another folder and with the error on the last line of DOM Exception: HIERARCHY_REQUEST_ERR (3) line 300 character