internet-explorer-11

Google Maps compatibility IE11 not working because of polyfills.js

99封情书 提交于 2019-12-05 04:15:22
问题 My app website is not working fine on IE11. The website is not loading, it gives me a blank page This is the error thrown on IE11 : SCRIPT5005: String expected js (26,286) SCRIPT5022: Exception thrown and not caught. polyfills.js (3234,3) I'm enclosing the screen capture on on the console I have included the API in my index.html like this : <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=API_KEY"></script> It should include googlemaps after my polyfills.js, but

how can I use babel polyfill to support all IE11 issues with gulp

筅森魡賤 提交于 2019-12-05 03:43:35
I've been piecing together support for IE11 by adding plugins for transform-object-assign and array-includes and now I'm getting a symbol error for using for of loops. Instead of just tackling them one at a time, is it possible for me to work babel polyfill into my build below and future proof it? I've read several related questions but still am not clear on how I'd fit babel-polyfill into the gulp build below: return gulp.src(input) // Grab the input files .pipe($.babel({ presets: ['es2015'], // transform ES6 to ES5 with Babel plugins: ['transform-object-assign','array-includes'] })) .pipe($

IE 11 compatibility errors using Angular 5

一曲冷凌霜 提交于 2019-12-05 01:34:26
问题 I have build my Angular application then run it in server. I got errors that where not shown in localhost. Unable to get property 'onHover' of undefined or null reference. File Chart.min.js, ligne : 10, colonne : 115187 Error “SCRIPT 1028 Expected identifier, string or number” File polyfills.bundle.js, ligne : 6399, colonne : 5 . Object doesn't support property or method 'querySelector File styles.bundle.js, ligne : 215, colonne : 2 Expected identifier File: vendor.bundle.js, ligne : 3169,

IE11 truncates string in console

独自空忆成欢 提交于 2019-12-04 23:49:00
I have a string of maybe 20 or 30 lines i'd like to output to the console all in one console.log call. This works great in Chrome, but IE11 truncates about half of the string in the console. Any way to prevent this? The string is something like: ----------------------------------------- Wed Jan 7 20:41:16 GMT-0700 2015 530d8aa855df0c2d269a5a5853a47a049c52c9d83a2d71d9 ----------------------------------------- 41:17:181 - Initiating recording... 41:17:233 - Creating NetStream... 41:17:240 - NetStream created. 41:17:240 - Recording ready. ----------------------------------------- Wed Jan 7 20:41

Set the selected option as the first option in the selectbox

ⅰ亾dé卋堺 提交于 2019-12-04 21:09:00
Open this link in IE to exactly understand the behavior that I will be describing and seek a hack for. I have the following select list: <select> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="mercedes">Mercedes</option> <option value="audi">Audi</option> </select> When I render this in IE, drop-down behavior of this changes compared to other browsers due to which some of the options are pushed above the selectbox while the others are pushed below (based on the selected option) Since this is the default behavior of IE , what I am looking for is that the

External CSS in Internet Explorer 11 not working

被刻印的时光 ゝ 提交于 2019-12-04 21:05:09
I am doing some basic editing to change my font color using the external css. When I open in IE11 the font color didn't work and it change to normal black text color. However when I open in the Mozilla firefox, the font color turns red which is what I expected. Has anyone encountered a similar situation as me? Here are my basic code in the external css: p.marking { /* color: #376092; */ color:#FF0000; font: bold 24px "Arial", sans-serif; position:relative; z-index:1; } I changed from blue to red for the font color. Only Firefox can be shown. IE 11 turns the text to default black text color. As

IE 11: Error while sending Multipart Form Data request: Stream ended unexpectedly

会有一股神秘感。 提交于 2019-12-04 19:57:04
问题 I am trying to upload files along with some other form fields using jQuery AJAX calls. This is a common function that calls the URL on the server: function uploadDocument(rquestURL,formId,callback){ $.ajax({ type : 'POST', url : rquestURL, cache:false, processData:false, contentType:false, data : new FormData($("#"+formId)[0]) }).done(function(response) { callback(response); }); } On examining from the dev tools from browsers, these are the respective request contents: From IE11 -------------

IE11 - Toggling a Class via jQuery.toggleClass() Doesn't Activate the Class in IE11 - It Works in All Other Browsers

女生的网名这么多〃 提交于 2019-12-04 18:44:30
This works in all browsers except IE 11. My code is pretty basic. Click on the text to toggle the class "infinite" which (should) loop the bounce effect forever. IE11 applies the class to the H1 tag but it doesn't animate infinitely like it does in all other browsers. The intended behavior is for it to bounce once at load (this works) and clicking the text applies the class "infinite" which (should) makes it bounce forever (this doesn't work in IE 11). $(window).ready(function(){ $('h1').on('click',function(){ $('h1').toggleClass('infinite'); }); }); <link href="//cdnjs.cloudflare.com/ajax

Running ie10, ie11 at same time for testing?

喜夏-厌秋 提交于 2019-12-04 18:10:55
问题 I recently installed ie11 on my Windows7 machine and do browser testing for all versions of ie on it in the document. I also do tests on Browserstack. I have client now that INSISTS I test on ie10 directly. As you know, Windows won't let you run multiple version if ie, un-install ie directly, or reinstall an older version when a newer version is already installed. I don't want to have to uninstall/reinstall ie11, reinstall/install ie10. Is there a work around where I can run both version

Internet Explorer 11 (IE 11) Throws Syntax Error using parseFromString in DOMParser

我是研究僧i 提交于 2019-12-04 16:27:16
I have some Javascript on a webpage which works fine in Chrome and Firefox; when testing in IE 11 however it fails. I viewed the problem in IE 11 with the debug tools (F12) and the following code was at fault; specifically when using parseFromString a 'Syntax Error' is thrown: if (window.DOMParser) { parser = new DOMParser(); tmp = parser.parseFromString(resp, "text/xml"); } Any way I can work around this? For IE this works for me xmlDoc=new ActiveXObject("Microsoft.XMLDOM"); xmlDoc.async=false; xmlDoc.loadXML(text); source: http://www.w3schools.com/dom/dom_parser.asp 来源: https://stackoverflow