internet-explorer-10

IE10 on Windows 7 Side-by-Side IE8

房东的猫 提交于 2019-12-05 12:05:34
问题 Can I install IE10 Preview for Windows 7 and keep the previous IE8 version for development testing? 回答1: I don't believe you will be able to run IE8 and IE10 side-by-side on the same machine. Instead, I would encourage you to use the browser-emulation options found within the F12 Developer Tools. From there you can instruct IE10 to behave as though it were IE8. If emulation isn't desirable, and you're not interested in downloading a virtual machine image, you could also consider exploring the

Workaround for missing preserve-3d property in IE 10

拥有回忆 提交于 2019-12-05 11:54:19
Microsoft says on their website Note The W3C specification defines a keyword value of preserve-3d for this property, which indicates that flattening is not performed. At this time, Internet Explorer 10 does not support the preserve-3d keyword. You can work around this by manually applying the parent element's transform to each of the child elements in addition to the child element's normal transform. Can someone give an example of how this should be applied? To create 3D objects with transform-style: flat , you'll need to remove the transforms from the container div: .object3d { transform

IE 10 drag and drop still opening the file eventhough there is dragover event

大兔子大兔子 提交于 2019-12-05 11:54:08
on IE 10, everytime I drag the file to the upload filed, it still opening the file. how to prevent this? I'm confused. Please help. Is the cause due to the drag and drop is "in the file upload field" instead of creating another div tag drop area? Is there anyway to make it work on the upload field? <div id="dnd-upload-box"> <img id="image" src="https://upload.dev/img/elements/drag_drop.jpg" width="100%" height="100%"/> <?php echo $this->Form->input('files', array( 'id' => 'file-input-0', 'class' => 'file-input', 'type' => 'file', 'multiple' => 'multiple', 'name' => 'fileselect[]', 'onChange' =

Internet Explorer displaying XML attributes in random order

对着背影说爱祢 提交于 2019-12-05 10:12:41
i am opening an xml file in Internet Explorer (9, Windows 7 64-bit). Internet Explorer likes to display element attributes in random order , e.g.: rather than in declared order: <ApplicationVersion major="2" minor="2" release="12" build="687">2.2.12.687</ApplicationVersion> e.g.: Or rather than: Is there an element, attribute, xml-dtd, xml-schema, Internet Explorer option, Windows option anywhere that will instruct IE to display the XML in declared, rather than random order? Colin D Attributes are unordered as defined by the xml standard. from the standard: Note that the order of attribute

Space between touch points on IE10

谁说我不能喝 提交于 2019-12-05 08:32:44
I'm working on the plugin flot.touch.js which add touch interactivity (pan and zoom) on the chart for webkit browsers. I want to make it work on IE10 too but I don't know how to retrieve the space between my touch points (I need this for calculate the scale). On webkit browsers, we can do this by using these variables : evt.originalEvent.touches[0].pageX evt.originalEvent.touches[0].pagey evt.originalEvent.touches[1].pageX evt.originalEvent.touches[1].pageY With IE's pointer events, a separate event is fired for each touch point. Unlike iOS touch events (as implemented by other browsers too),

IE10 - Must click 2 times to submit form after choosing a file to upload

五迷三道 提交于 2019-12-05 07:48:14
In a form I have a file input skinned with jquery and css and a submit button. <form action="#" method="POST"> <input style="width:150px" type="hidden" name="MAX_FILE_SIZE" value="40000"/> <div class="l-input-file"> <input style="margin-bottom: 0px" type="file" id="myInput" name="myInput" size="16" /> </div> <div><button type="submit" class="btn-black">Continuer</button></div> </form> http://jsfiddle.net/CsL9t/ The matter here appear only on IE10: After a file has been selected the submit button must be clicked 2 times to be able to submit the form. I tried forcing the focus on the button when

Does IE10 support FormData()?

北城以北 提交于 2019-12-05 07:41:02
I've read ( here ) that IE10 supports FormData(). But when I type this into the IE10 JavaScript console: foo = new FormData(); I get the error, "FormData not defined" Does IE10 support FormData() or doesn't it? Is there a trick to getting it to work in IE10? Niet the Dark Absol I can confirm that it does - running your code in the console on this page works fine. I will therefore hypothesize that you are in Quirks Mode, and therefore the browser is pretending it doesn't know it to be compatible with said Mode. Make sure your page has a valid <!DOCTYPE html> at the start and no errors to fall

IE10 JavaScript cannot repaint window while computer is locked?

妖精的绣舞 提交于 2019-12-05 04:29:14
The Problem Occurs on IE10. (IE8 works fine.) I've written some JavaScript code that, after 20 minutes of inactivity, redirects the browser to another URL to indicate the user was logged out. Normally this works fine. However I've noticed a strange scenario.... if the user's Windows computer was locked during this timeout then it appears as though nothing has happened. However, when I look at the browser's URL bar, I can clearly see that the URL has already been updated to the auto-logout page. But the entire content of the browser window is still displaying the old page!!!! For some reason,

IE10 line-height bug with display:inline-block; and overflow:hidden;

六月ゝ 毕业季﹏ 提交于 2019-12-05 04:17:48
I've recently run in to a peculiar problem in IE10 ( sigh ). It appears that if you use display:inline-block; in conjunction with overflow:hidden; IE10 messes up your line-height. I tried fixing it using vertical-align:middle; but that only almost fixes the problem in IE10 and then introduces baseline problems in other browsers. The only code needed to trigger the bug is: CSS: .bug { display:inline-block; overflow:hidden; } HTML: <p>This should <span class="bug">be buggy</span> in IE10</p> I created a JSFiddle to illustrate the bug - http://jsfiddle.net/laustdeleuran/5pWMQ/ . There's also a

Can I turn on IE 10 Compatibility View using JavaScript or HTML?

我们两清 提交于 2019-12-05 03:45:29
How can I turn on IE 10 Compatibility View programmatically in Javascript or HTML? I just added the following meta tag within the <head> tag, but it is not working. <meta http-equiv="x-ua-compatible" content="IE=EmulateIE7" > Is there any way to do the same thing in JS? I checked the compatibility mode article on msdn - here . Your meta tag is still the method for enabling compatibility mode in IE 10 and IE 9. As long as you have: <head> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"> <!-- Other meta tags etc. --> <head> Then it should work. You could try making the http-equiv