internet-explorer-11

Online images streaming (MJPEG) not working in IE 11

别来无恙 提交于 2019-12-24 11:27:04
问题 Actually I am getting continuous images which is actually a video from a link. Now when I'm going to display it as: <img src="http://192.168.2.50:8080/livemjpeg" title="Live Streaming" alt="Live Streaming"/> It gives no issue in Chrome & Firefox but doesn't play well in IE 11. Please help! 回答1: IE doesn't support MJPEG by default, you either need a Plugin in your Browser or some kind of applet on the website. SO: Cross-browser solution for displaying MJPEG stream 来源: https://stackoverflow.com

IE 11 Issue: :SCRIPT7002: XMLHttpRequest: Network Error 0x2eff

我们两清 提交于 2019-12-24 11:20:05
问题 I'm facing the below error in IE 11, I'm calling a webapi, though webapi response is coming fine but also getting the below error on console: SCRIPT7002: XMLHttpRequest: Network Error 0x2eff, Could not complete the operation due to error 00002eff. Please give any suggestion, what could be the root causes of this error, I'm not getting this error in other browsers (Chrome and Firefox) 回答1: You've said that the error occurs when you call a webapi. As far as I'm concerned, maybe this due to a

internet explorer 11 Syntax error in regular expression error with javascript RegExp

谁说我不能喝 提交于 2019-12-24 10:30:58
问题 I am receiving a Syntax error in regular expression error in Internet Explorer 11 and I have tried the following options: chars = text.split(/(?!$)/u), chars = text.split(new RegExp("(?!$)", 'u')) chars = text.split(new RegExp('/(?!$)/', 'u')); I am curious what I am missing here. [insert comment how this works fine in other browsers] 回答1: You are trying to use a regular expression with the unicode flag ("u") which is not supported by any Internet Explorer <= 11. You can try to use a library

Is there a cross browser way to include fonts in web applications in 2019?

风流意气都作罢 提交于 2019-12-24 10:27:34
问题 My five year old java web application has run into problems with fonts, after some work stations has been upgraded to the combination of windows 10 and IE11. The issue is described in detail from Microsofts perspective here. There are several resources describing how to turn off these settings, but I'd like to know if there are any cross browser solutions to keep using specific fonts, with web fonts blocked. Microsofts suggestions are these two: On each computer with the app installed, right

v-for produces error on IE11 [duplicate]

本小妞迷上赌 提交于 2019-12-24 08:46:42
问题 This question already has answers here : Looping a block of code in IE 11 (3 answers) Closed last year . I have a simple vue instance which produces table from data array. Document renders fine on Firefox and Chrome but in IE11 i'm getting an error: [Vue warn]: Error when rendering root instance. I thought Vue is compatible with 'modern browsers' but when started to find compatibility information inside vue documentation I found nothing. Anyway, do you have any ideas on how to solve this

flex-grow isn't rendering correctly in Internet Explorer 11 (IE11)

て烟熏妆下的殇ゞ 提交于 2019-12-24 08:06:24
问题 I tried a new html design with flex boxes. The design in Chrome 58 Version 58.0.3029.110 is correct but not in IE11. I did not tried other browsers. What is the issue? body { display: flex; flex-flow: row wrap; } #left { flex: 6 0%; display: flex; flex-flow: row wrap; } #right { flex: 1 0%; background-color: black; } #top { flex: 1 100%; background-color: red; } #nav { flex: 1 0%; background-color: green; } #main { flex: 6 0%; background-color: blue; } #notepad { flex: 1 0%; background-color:

Store not updating in IE11 (react redux)

馋奶兔 提交于 2019-12-24 06:30:09
问题 in IE 11 I can't update my store. First time it add data, but next time, when I try update it not working. I try use polyfill import Immutable from 'immutable' const objectAssign = require('object-assign'); const initialUserState = { } ; const BackupReducer = function(state = initialUserState, action) { //console.log('actiondata in reducer:' + action.data + action.type); switch(action.type) { case 'GET_BACK_LIST': return objectAssign({}, state, { backups: action.data }); break; but it not

Store not updating in IE11 (react redux)

霸气de小男生 提交于 2019-12-24 06:29:28
问题 in IE 11 I can't update my store. First time it add data, but next time, when I try update it not working. I try use polyfill import Immutable from 'immutable' const objectAssign = require('object-assign'); const initialUserState = { } ; const BackupReducer = function(state = initialUserState, action) { //console.log('actiondata in reducer:' + action.data + action.type); switch(action.type) { case 'GET_BACK_LIST': return objectAssign({}, state, { backups: action.data }); break; but it not

IE11 textarea loses focus if another textarea is disabled

旧巷老猫 提交于 2019-12-24 03:24:20
问题 In this fiddle, using ie11 with open Console, input something into any textarea and then click into any other textarea . In console, you will see that change event for the first textarea is triggered, then this textarea gets disabled , but focus event for the second textarea is not triggered. Why? In my case, I was able to achieve what I needed by using readonly instead of disabled , but generally this looks quite odd. A bug? For input type=text it works as expected, for now I was able to

Angularjs remove() method is not working on IE11

前提是你 提交于 2019-12-24 02:42:48
问题 The following Angularjs remove() method is working fine in firefox. However when I use Internet Explorer 11 (IE 11), it is not working. I am getting the error, Object doesn't support property or method 'remove' The following is my code. Any help please. You can even refer the plunker http://plnkr.co/edit/0XtT0f?p=preview, when you use IE11 'Remove Chart' won't function. I am using angulajs 1.2.16. var chartDivs = angular.element(document.querySelector('.chartsDiv')) var cntChartDivs =