internet-explorer-10

Does Google Maps API V3 support touch event?

回眸只為那壹抹淺笑 提交于 2019-11-27 07:51:48
问题 We are experiencing an issue related to GoogleMaps. The issue is mainly related to touch screens. We were trying to resolve the issue, but so far no success. We found in this article that the Google Maps API V3 does not supports touch event? Is this is true or false? UPDATE This issue was handled in the bug https://issuetracker.google.com/issues/35824421 and was solved in version 3.27 of Google Maps JavaScript API in December 2016. 回答1: In my experience, the mousedown , mouseup , dragstart ,

Jquery Ajax call works in all browser except ie 10

有些话、适合烂在心里 提交于 2019-11-27 06:59:38
问题 The following ajax call works in all browsers except IE10 (unless i set it to IE9 standards mode) I look at it with fiddler and it seems as if the paramater isn't being passed through in ie10 any ideas? var paramArray = '{"ID":1}'; $.ajax({ type: 'POST', contentType: 'application/json; charset=utf-8', dataType: 'json', url: '/assets/services/coreWebServices.svc/GetCategoriesWithoutColumns', data: paramArray, success: successFn, error: errorFn }); throws the following error The

Access Denied for localstorage in IE10

泪湿孤枕 提交于 2019-11-27 06:52:27
Yesterday I installed Windows 8 and am now trying to understand why I am getting an "Access Denied" message when accessing localstorage. The page is being served on the same PC with the browser (http://localhost). My feeling is that one of the security settings in IE 10 is wrong, but I haven't figured out which one. The line of JavaScript code triggering the error is: if(window.localStorage.getItem('phone') == null) The code works fine in the latest version of Chrome. Our users were having issues with web sites using the LocalStorage feature (including Twitter) on Windows 8 with IE 10. When

Attach event to clear icon in IE10 textbox

旧时模样 提交于 2019-11-27 06:45:36
问题 In IE10 a small X icon appears in the textbox to clear the input text. How can an event be attached to that action (=clicking on that X and clearing the input)? 回答1: It seems there's not an exact event for this ( onchange is not suitable). However, you can use oninput and check, if the value of the input is empty: document.getElementById('input_ID').addEventListener('input', function () { if (this.value === '') { alert('No value'); } }, false); This event is triggered also, if user clears the

IE10 not playing a video when using the <video> tag, but plays it when requesting the video directly

北城以北 提交于 2019-11-27 06:29:34
问题 I have a webpage with a tag on it with the following markup: <video width="456" height="360" controls autoplay> <source src="Movies/Intro.mp4" type="video/mp4" /> <source src="Movies/Intro_H264.webm" type='video/webm; codecs="vp8.0, vorbis"'/> <source src="Movies/Intro_H264.ogg" type='video/ogg; codecs="theora, vorbis"'/> </video> If I visit this page in IE10 it renders the video player but with an error message that reads: "Error: unsupported video type of invalid file path" But what's odd

XmlHttpRequest status 0 instead of 401 in IE 10

Deadly 提交于 2019-11-27 05:45:21
问题 I have hit a wall with this issue. I guess it is some kind of IE bug but I want to be sure. So the question is. Why does IE10 XmlHttpRequest.status returns 0 instead of 401? var xmlhttp=new XMLHttpRequest(); xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4) { document.getElementById("rescode").innerHTML="Request completed with status: "+xmlhttp.status; } } xmlhttp.open("GET","http://hosting.gregy.cz/cors/",true); xmlhttp.send(); See plunker here: http://plnkr.co/edit

Export the HTML table to excel is not working in IE

♀尐吖头ヾ 提交于 2019-11-27 05:22:34
Exporting HTML table to Excel is working fine in Chrome and Firefox but it is not working in Internet Explorer 10. var tableToExcel = (function() { var uri = 'data:application/vnd.ms-excel;base64,', template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><!

IE 10 - File download issues

十年热恋 提交于 2019-11-27 05:12:40
I'm trying to download an excel file (generated dynamically using C#\ASP.NET) and I get the IE10 View Downloads dialog when I click "Open" it says "abc.xls couldn't be downloaded" error but after clicking "Retry" it opens the .xls file properly in the second try. When I test this in Firefox or Chrome it works fine. I think this may explain the strange behaviour: "Content-Length and Transfer-Encoding Validation in the IE10 Download Manager" It seems that IE9 beta had introduced content-length and transfer-encoding validation when downloading files, but found it was too problematic since many

Removing the IE10 Select Element Arrow

若如初见. 提交于 2019-11-27 05:10:17
问题 So, with Mozilla and WebKit I have a half-decent solution replacing the arrow on the select box using appearance: none; and having a parent element. In IE for the most part I disabled this feature. For IE10 I can't actually disable it since my conditional comments don't actually work. Here is my markup: <!--[if lt IE 7 ]> <html class="ie6"> <![endif]--> <!--[if IE 7 ]> <html class="ie7"> <![endif]--> <!--[if IE 8 ]> <html class="ie8"> <![endif]--> <!--[if IE 9 ]> <html class="ie9"> <![endif]-

VBA hanging on ie.busy and readystate check

守給你的承諾、 提交于 2019-11-27 04:32:09
问题 I am trying to grab some football player data from a website to fill a privately used database. I've included the entire code below. This first section is a looper that calls the second function to fill a database. I've run this code in MSAccess to fill a database last summer and it worked great. Now I am only getting a few teams to fill before the program gets hung up at While IE.Busy Or IE.ReadyState <> READYSTATE_COMPLETE: DoEvents: Wend I've searched countless websites regarding this