internet-explorer-10

IE10/IE11 Abort Post Ajax Request After Clearing Cache with error “Network Error 0x2ef3”

帅比萌擦擦* 提交于 2019-11-27 13:06:55
SCRIPT7002: XMLHttpRequest: Network Error 0x2ef3, Could not complete the operation due to error 00002ef3 No valid solution at the moment. Update: Noticed on IE11 also. After more and more investigation, I come with this results: The problem is specific to my application, it does not happen on facebook. The problem has nothing to do with max number of requests per host (I did sample page that flood the server, IE10 is able to handle up to 8-10 req at the same time, inside my application I also tried to do ajax requests serially, it failed also). The problem is specific to POST requests. The

How do I detect IE10 using javascript?

可紊 提交于 2019-11-27 12:29:24
问题 As many already posted in other questions (also in jQuery documentation), the old jQuery.browser.version is deprecated and works only in jquery1.3. Do you know another simple way to detect it, that I can include in my code before: function handleInfoDivPopupVisibility(dynamicEleId, staticEleId){ var parentContainer = $('headerSummaryContainer'); var dynamicEle = $(dynamicEleId); var staticEle = $(staticEleId); if(isIE() && parentContainer){ if (jQuery.browser.version != 10) { // I need to

IE10 injects token into .NET MVC links

倖福魔咒の 提交于 2019-11-27 12:19:09
问题 I have a working .NET MVC application, but when accessing with IE10 on Windows 8 the browser source code shows that all dynamically generated URLs, eg. with Url.Action("Index", "Home") are written as: /(F(usb6gVWyFnXevozQyFvVxVdbsN0uM9kZ5wNu9gT9pWBINGuodOdzLKkIQzfhqy3UhnCLyXf78LugXZO2UPYfMbNzSJJawmbqUBL56TjKpXgWpiMdVAjB1T3YcPlGhZePwFd6C9P_f_Y89KiDnWcA9EfR1m0ud3IcBYTW8OwZxOMTd8bxt5hM8mgXVN6OSdoo3IMwRA2))/ Home/Index instead of: /Home/Index If we write the link with static HTML: <a href="/Home

IE10 SCRIPT5009: '__doPostBack' is undefined

有些话、适合烂在心里 提交于 2019-11-27 11:21:33
I am facing a problem on IE10 with ASP.NET controls that requires JavaScript post back[like, link button]. It is properly working on the IE9 version as well as on IE10 Compatibility mode. But on the IE10 standard mode, it is giving below error. SCRIPT5009: '__doPostBack' is undefined [I have created a demo project with a simple asp:link button that redirects to another page.] Tried the solution, but didn't work for me Can anyone suggest fix for this? There is apparently a bug in the browser definition files that shipped with .NET 2.0 and .NET 4. The definition files do not cater for IE10 as a

Div overflow scrolling when -ms-viewport is specified?

独自空忆成欢 提交于 2019-11-27 11:18:39
问题 Working on a page that is viewed in Windows Phone 8, and I noticed an odd behavior. When -ms-viewport is specified with a width or height, then it seems like users can no longer use the touch scrolling behaviors on an overflow:auto or -ms-touch-move:pan-y element. Anyone encounter this behavior, or aware of any workarounds? edit: Visit this URL on a WP8 device for a repro: http://fiddle.jshell.net/Vk7SR/3/show/light 回答1: Setting the @-ms-viewport { width: auto } may not be acceptable for a

Can I disable IE10 history swipe gesture?

若如初见. 提交于 2019-11-27 11:18:08
问题 I have a surface web app that uses touch panning (container divs have "overflow: auto" style) and I'm using the built-in paging scroll styles: -ms-scroll-snap-points-x: snapInterval(0px, 1366px); -ms-scroll-snap-type: mandatory; My app has a 300% width child container resulting in 3 pages that snap on page boundaries. This works great for high-performance paging scrolling, except when the user is on the first page and they swipe to the right, which activates the browser's built-in back

Detecting mousewheel on the x-axis (left and right) with Javascript

浪子不回头ぞ 提交于 2019-11-27 10:56:46
问题 I know it's possible to detect up and down e.g. function handle(delta) { if (delta < 0) { alert('down'); } else { alert('up'); } } function wheel(event){ var delta = 0; if (!event) event = window.event; if (event.wheelDelta) { delta = event.wheelDelta/120; } else if (event.detail) { delta = -event.detail/3; } if (delta) handle(delta); if (event.preventDefault) event.preventDefault(); event.returnValue = false; } /* Initialization code. */ if (window.addEventListener) window.addEventListener(

VS2010 and IE10 Attaching the Script debugger to process iexplore.exe failed

不羁岁月 提交于 2019-11-27 10:09:55
So I am using Win7 x64 with VS2010 and have installed the IE10 Win7 Preview and ReSharper 6.1. When I attempt to Start Debugging, I receive the following: "Attaching the Script debugger to process '[1111] iexplore.exe' on machine 'MINE' failed. A debugger is already attached." I can click OK and look at attached debug sessions - [1111] is grayed out and there is another instance of iexplore.exe with my solution title. I can attach manually and it works fine. I thought maybe since there were two iexplore.exe pids there would be something wrong, there are not two tabs or windows open and I

Flexbox layout does not work in Internet Explorer 10

↘锁芯ラ 提交于 2019-11-27 08:09:40
问题 http://jsfiddle.net/J8rL7/87/ According to http://caniuse.com/#feat=flexbox It should work for IE10 with vendor-prefix. But it does not! UPDATE: And I just checked in latest Firefox it looks totally broken. Why? <div id="wrapper" style="margin:auto;background-color:yellow;height:100%;"> <div style="width:50px;height:100%;"> <div class="fluid-column" style="height:80%;background-color:green;"> <div class="box" style="background-color:#ff99cc;height:25%;">1</div> <div class="box" style=

tableToExcel jQuery throws strange error in IE

 ̄綄美尐妖づ 提交于 2019-11-27 07:58:28
问题 I am using a jQuery function to export my HTML table to Excel. This is a function I have seen used in plenty of other places, and it works fine for me in Chrome: 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>