internet-explorer-10

SCRIPT1010: Expected identifier in IE10

烈酒焚心 提交于 2019-12-21 07:56:16
问题 In my project I am using the Prototype JavaScript Framework 1.7.1 When I load the web page in IE10 on Windows 7 I get the error message below: SCRIPT1010: Expected identifier line 1 character 9 which points to <!DOCTYPE html> in my test HTML page below: <!DOCTYPE html> <html> <head> <title>My webpage title</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="description" content="" /> <meta name=

Frameset + cols IE10

一曲冷凌霜 提交于 2019-12-21 04:26:12
问题 I was testing some scripts in IE10, seems that the browser has problems in setting attribute cols . Example: parent.middle.document.getElementById("middle_frames").cols = "0,*" This works perfect for SAF/Chrome/FF/IE7/IE8/IE9, but in IE10 it doesn't work. Anyone with some help? I can't show my problem in my project, but I made a dummy script to show you the problem. Make 3 files (these below) and run them in IE10 and click the button "change cols". Works perfect for every browser except IE10.

.NET DropDownList SelectedIndexChange Event Not Firing in IE 10

旧街凉风 提交于 2019-12-19 18:28:10
问题 In IE 10, when a drop down list selected item is changed, nothing happens. It doesn't post back. All other controls work except for drop down lists. It appears to work when I switch to IE 10 compatibility mode. 回答1: Scott Hanselman explains this on his blog. http://www.hanselman.com/blog/BugAndFixASPNETFailsToDetectIE10CausingDoPostBackIsUndefinedJavaScriptErrorOrMaintainFF5ScrollbarPosition.aspx 回答2: Do you have the ASP.net Hotfix for IE10 installed? 回答3: Ok, this was a weird issue. The

HTML5 audio element do not work in IE10, but works in Chrome. Why?

混江龙づ霸主 提交于 2019-12-19 16:16:40
问题 HTML5 audio do not work in IE10, but works in Chrome. Any idea? The HTML used is following, 回答1: The IE10 on Win8 or RT does not support wav, however, IE10 Mobile does! I attache the screenshots so you can see which formats are supported on both IE10s. The top one is IE10 (Metro) on Windows 8 RT, and the bottom is IE10 Mobile on WP8 / Lumia 920. (For whatever reasons, the mobile ver is displayed larger here.) 回答2: IE10 doesn't support wav. You can always use this page to test audio formats on

HTML5 audio element do not work in IE10, but works in Chrome. Why?

倖福魔咒の 提交于 2019-12-19 16:16:39
问题 HTML5 audio do not work in IE10, but works in Chrome. Any idea? The HTML used is following, 回答1: The IE10 on Win8 or RT does not support wav, however, IE10 Mobile does! I attache the screenshots so you can see which formats are supported on both IE10s. The top one is IE10 (Metro) on Windows 8 RT, and the bottom is IE10 Mobile on WP8 / Lumia 920. (For whatever reasons, the mobile ver is displayed larger here.) 回答2: IE10 doesn't support wav. You can always use this page to test audio formats on

Open pdf.js with a data URL in IE11

痴心易碎 提交于 2019-12-19 09:27:24
问题 I'm trying to use pdf.js for showing a document in a data URL on IE10. That is, something like this. It works well with Firefox or Chrome, but in Internet Explorer 10 and 11, the interface is shown, but stays empty, and the document never loads. I checked, compatibility.js is included in the renderer page (viewer.html), so IE support should be present. EDIT: actually it's a security issue, as IE doesn't let to run a request of this type. Thanks in advance, 回答1: Ok, if someone runs to the same

Object doesn't support property or method 'transformNode' in Internet Explorer 10 (Windows 8)

你离开我真会死。 提交于 2019-12-19 08:05:31
问题 I am having some JavaScript issues that seem to only occur in Internet Explorer 10 on Windows 8 (IE 7, 8, and 9 all work fine). The basic jist of what I am doing is getting XML and XSL from a web service and then transforming them in JavaScript to render on the page using the Sys.Net.XMLDOM object. XMLDOM = Sys.Net.XMLDOM; var xsl = // XSL gotten from somewhere else var xmlString = // XML gotten from somewhere else as a string... var xml = new XMLDOM(xmlString); var content = xml

Object doesn't support property or method 'transformNode' in Internet Explorer 10 (Windows 8)

随声附和 提交于 2019-12-19 08:05:17
问题 I am having some JavaScript issues that seem to only occur in Internet Explorer 10 on Windows 8 (IE 7, 8, and 9 all work fine). The basic jist of what I am doing is getting XML and XSL from a web service and then transforming them in JavaScript to render on the page using the Sys.Net.XMLDOM object. XMLDOM = Sys.Net.XMLDOM; var xsl = // XSL gotten from somewhere else var xmlString = // XML gotten from somewhere else as a string... var xml = new XMLDOM(xmlString); var content = xml

Storage limit for indexeddb on IE10

风流意气都作罢 提交于 2019-12-19 06:34:02
问题 We are building a web-app that store lots of files as blobs with indexedDB. If the user uses our app at its maximum, we could store as much as 15GB of file in indexeddb. We ran into a problem with IE10, that I strongly suspect is a quota issue. After having successfully saved some files, a new call to store.put(data, key); will never ends. Basically, the function will be called, but no success event nor error event will be called. If I look into the IndexedDB folder of IE 10 I'll see a

Storage limit for indexeddb on IE10

若如初见. 提交于 2019-12-19 06:31:34
问题 We are building a web-app that store lots of files as blobs with indexedDB. If the user uses our app at its maximum, we could store as much as 15GB of file in indexeddb. We ran into a problem with IE10, that I strongly suspect is a quota issue. After having successfully saved some files, a new call to store.put(data, key); will never ends. Basically, the function will be called, but no success event nor error event will be called. If I look into the IndexedDB folder of IE 10 I'll see a