internet-explorer-10

jquery-ui 1.9.1 ui-draggable not working with ie9 and ie10

核能气质少年 提交于 2019-12-07 17:47:19
问题 I am having trouble making .draggable work in IE 9 and 10. The main javascript packages used are: jquery-ui-1.9.1.min.js and jquery-1.8.2.min.js The code basically looks like this: creation.texts.resize = function(){ jQuery('.modification-text.active .creation-resize-handler').draggable({ start: function(event, ui){ ... some code ... }, drag: function(event, ui){ ... lots of code ... }, stop: function(event, ui){ ... some code ... creation.texts.resize(); } }); } It works perfectly fine with

SEC7118: XMLHttpRequest for /socket.io/1/?t=1370206038749 required Cross Origin Resource Sharing (CORS)

房东的猫 提交于 2019-12-07 13:35:29
问题 I have a nodejs app on one server running on port 443 (apache listening disabled) with the following node.js packages: Express: 3.2.1 Socket.io: 0.9.14 Request: 2.21.0 Node: 0.11.1 I then have a drupal site on a second server with the nodejs module enabled. I built a chat which uses the nodejs app on the first mentioned server. All good til now, after much pain I managed to get it all working. All but in IE10. I keep getting the error in IE10's console: SEC7118: XMLHttpRequest for https:/

Sencha Touch and Internet Explorer 10

假如想象 提交于 2019-12-07 13:22:49
问题 Sencha Touch is brilliant but IE cannot open websites which is developed using Sencha Touch. I am not interested in using IE, but my opinion is not important since many others may use it. Since Microsoft announces HTML-5 Support and I have worked with the great tools to make native apps even using HTML-5 and Java so it is obvious that IE 10 must support HTML5. But it seems sencha touch websites cannot be explored by IE 10 too, since I cannot explore Kitchen Sink (on sencha.com) using IE 10

selenium webdriver support for IE10 Metro?

夙愿已清 提交于 2019-12-07 10:31:25
问题 Is there any support for IE10 Metro in selenium webdriver? By default the tests run on Desktop mode. Any way to test in Metro mode? 回答1: No, there is no support for automating using the Metro interface at the time of this writing. Sorry. Selenium is an open-source project, however, and I'm sure the developer of the IE driver would be happy to review any patches or solutions you might come up with. 来源: https://stackoverflow.com/questions/15067061/selenium-webdriver-support-for-ie10-metro

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

天涯浪子 提交于 2019-12-07 06:49:25
问题 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',

What exactly is “IE5 quirks” in IE 10 Developer Tools? [duplicate]

[亡魂溺海] 提交于 2019-12-07 05:52:19
问题 This question already has answers here : Closed 6 years ago . Possible Duplicate: Does the windows 8 internet explorer 10 still have quirksmode? I'm working on a website which we're trying to get to work in IE10. In this site we have an iframe which is breaking when we're using IE5 quirksmode which we really need for the main site to work, for some reason we can't just use the Quirks document mode in IE10, because then the main site wont work. So what the heck is IE5 quirks and is it the same

Space between touch points on IE10

不羁岁月 提交于 2019-12-07 05:25:46
问题 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 回答1: With IE's pointer events, a

Workaround for missing preserve-3d property in IE 10

给你一囗甜甜゛ 提交于 2019-12-07 05:21:24
问题 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? 回答1: To create 3D objects with

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

风流意气都作罢 提交于 2019-12-07 03:27:38
问题 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

Does IE10 support FormData()?

☆樱花仙子☆ 提交于 2019-12-07 02:32:22
问题 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? 回答1: 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