internet-explorer-11

How to get indexedDB to work in IE11?

对着背影说爱祢 提交于 2019-12-12 05:17:18
问题 I want to use indexedDB in my IE11, but it seems to be undefined. This is the code: <!DOCTYPE html> <html> <head> <title>Title of the document</title> <script> window.indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; window.IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction || window.msIDBTransaction; window.IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange || window.msIDBKeyRange if (IDBTransaction) { window

form with id attribute and input with form attribute ie11 issue

有些话、适合烂在心里 提交于 2019-12-12 04:52:51
问题 This only happens in ie11, this works fine in chrome and ie8 I have code programmed like this <form .... id='mainform'> <table>...</> .... <button>.... .... </form> <input form='mainform' ... >... The <input> is outside the <form> tags but it works except in ie11 unless i put the <input> before the </form> then it works in ie11 the odd thing is in ie11 when i use developer tools it moves the </form> so the input comes after the </form> except it works, but if i change the code to match what

Why do I get an exception in IE but not Chrome when running my ASP.NET site?

不问归期 提交于 2019-12-12 04:30:53
问题 I was finally able to get a legacy site to run, in my regular/preferred browser - Chrome. I was trying to see how to step through the javascript code there in the F12 tools. When I couldn't see how to access the script code, I did some research, and found that javascript debugging of ASP.NET projects can (supposedly?) only be done in IE. So in the project, I switched the browser to use from Chrome to IE. Now when I try to open the site from the VS IDE, it breaks with an exception: Why would

Why is hover working in IE11, but not in Chrome?

六月ゝ 毕业季﹏ 提交于 2019-12-12 04:04:31
问题 I have got a problem using the hover element in my css file. It is working in IE11, but not in Chrome. This is the code that i am using for hover: .datagrid table thead th:hover {background-color:#baeafd;} The whole css file: .datagrid table { border-collapse: collapse; text-align: left; width: 100%; } .datagrid {font: normal 12px/150% Arial, Helvetica, sans-serif; background: #fff; overflow: hidden; border: 1px solid #8C8C8C; } .datagrid table td, .datagrid table th { padding: 5px 10px; }

IE11 losing session or cookie info after window.open

倖福魔咒の 提交于 2019-12-12 03:33:12
问题 Here's my problem I have a website(X1.com) which contains a login and a button(window.open) after login to open another app (X2.com) in a detached window. this X2.com has list of items and when I double click an item it is supposed to open X1.com/item1. All of this was working as expected when I was using IE9, chrome and firefox. But when updated my IE9 to IE11 double clicking the item on X2.com is taking to the login page of X1.com saying session timed out. Chrome still works fine. When I

Getting buttons element to work with Internet Explorer 11

你说的曾经没有我的故事 提交于 2019-12-12 02:49:39
问题 I have the following test code working for all the browsers except for Internet Explorer 11: <button type="button" id="index_next" class="button_next" onclick="alert(this.id);" >Next</button> I have created a jsfiddle here Please assist. How do I get this working for IE11. thanks 回答1: Thank you Dallas. I have since resolved using <meta http-equiv="X-UA-Compatible" content="IE=edge" /> This has created a level of compatibility with other browsers,but have experienced odd behaviours in other

Extjs Tagfield: How to close its list by clicking on its label in IE11?

纵然是瞬间 提交于 2019-12-12 02:39:36
问题 How to close the list of a Tagfield in Ext.js 6.0.2 by clicking on its label in Internet Explorer 11? Look into the Fiddle to test it. https://fiddle.sencha.com/#fiddle/1h9n 回答1: First, you need to understand what's going on better. The tag field isn't closing because you clicked on the label; it's closing because the tag field has lost focus. In Chrome, you can click anywhere outside of the tag field and it will close - not just on the label. This in turn gives a hint as to what's going on -

MVC AntiforgeryToken - Limit?

柔情痞子 提交于 2019-12-12 02:39:17
问题 I have a view that shows fine via firefox but not on IE11. It uses Datatables and 2 of the columns have buttons to toggle the status of some data displayed. These columns are very similar and one is like this.... @{ <td style="width: 18%"> @if ((ViewBag.UserIsAdmin == "1") && ("AV".Contains(Model[ix].Status[0])) ) { <span class="hidden_span">@Html.DisplayFor(modelItem => Model[ix].StockId)</span> string voidItemButtonCaption = String.Format("{0} {1}", ((Model[ix].Status[0] == 'A') ? "Void

Grayscale in IE 10 and 11?

谁都会走 提交于 2019-12-12 02:06:50
问题 I am trying to figure out how to get grayscale to work in IE 10 and 11. I have a grid of icons that I want to grayscale. It's built something like this: <ul class="medium-block-grid-4 large-block-grid-4"> <li> <a href="#"><figure class="cap-bot report-10x10"> <figcaption>Caption. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean egestas lectus non odio bibendum iaculis. Proin a lorem purus.</figcaption> </figure></a> </li> <li> <a href="#"><figure class="cap-bot report-10kbonus

onunload and onbeforeunlad events not working as expected in IE11 and IIS

孤街醉人 提交于 2019-12-12 01:39:41
问题 I'm working on a web application in VS 2013 on Windows 8.1 that is hosted on IIS 8.5 on a 2012 R2 Server, and using the IE11 browser. I'm trying to use the unload event to send information to a web service to indicate that a user is no longer using a form that was unloaded so that others can use it (sort of a licensing scenario). That web service is Third Party, and I can't change that code. The code below is a fragment that shows how the JavaScript is set up for the unload and beforeunload