internet-explorer

Is it possible to make a cross domain request from https to http in IE?

可紊 提交于 2021-01-27 18:18:42
问题 We are trying to access a local self-hosted WCF service from the browser. The WCF service is located at http://localhost/myWcf . The browser is running a website which is located at https://some.www.com . We have enabled CORS and added CORS header to the hosted WCF. Access to the WCF service is done using jQuery’s $.ajax call. All browsers are working fine when not using SSL and we’re getting to the “success” callback. When switching to SSL, IE is the only one that fails to make the request –

Placeholder internet explorer 11 not showing

廉价感情. 提交于 2021-01-27 16:51:45
问题 I have a problem with placeholders in IE 11 even though it says in compatibility table that IE 11 can show placeholders. I am not talking about focus on input. There are no placeholders also when I am not focused on input box. IE Version: 11.0.9600 I have no css applied on the placeholders. In other browsers placeholder is showing. I tried also compatibility using meta tags, no change. <input id="textinput" name="name" type="text" placeholder="Name" class="form-control input-md" /></input>

object doesn't support property or method 'findIndex' IE11 javascript issue

限于喜欢 提交于 2021-01-27 15:52:38
问题 I have an AngularJS application that is giving me some issues in Internet Explorer 11 - In my administration area I am getting console log errors that seem to correlate with some problems I have noticed in the page with filtering data when using Internet Explorer (version 11 specifically) however fine in Chrome/Firefox etc. Object doesn't support property or method 'findIndex' at Anonymous function (http://myapp.local/js/controllers/admin/UsersController.js:363:9) When I navigate to this line

jQuery: checkbox does not lose focus (blur) [IE]

扶醉桌前 提交于 2021-01-27 14:20:51
问题 I have a script, that lets a table row move to the top after clicking on a checkbox. ( See my question here: jQuery: move table row to first position and then back) Now I have the problem, that after clicking on a checkbox and then on another the not checked checkbox does not blur and after clicking some more checkboxes multiple checkboxes have focus. example: click on A then click on C in most cases A now has focus even it is not checked code: http://jsfiddle.net/gguNM/2/ Please note, that I

Hide IE warnings from console in Angular 6

冷暖自知 提交于 2021-01-27 06:06:16
问题 I am constantly getting these warnings when serving my angular app: e.g.: ./src/app/core/containers/navbar/navbar.component.sass (Emitted value instead of an instance of Error) autoprefixer: ...src\app\core\containers\navbar\navbar.component.sass:11:4: grid-auto-columns is not supported by IE Unfortunately, I am not interested in IE support. Is it possible to disable this type of warnings? 回答1: You can disable warnings for single lines in your CSS file by prepending the line with: /*

Hide IE warnings from console in Angular 6

风格不统一 提交于 2021-01-27 06:03:43
问题 I am constantly getting these warnings when serving my angular app: e.g.: ./src/app/core/containers/navbar/navbar.component.sass (Emitted value instead of an instance of Error) autoprefixer: ...src\app\core\containers\navbar\navbar.component.sass:11:4: grid-auto-columns is not supported by IE Unfortunately, I am not interested in IE support. Is it possible to disable this type of warnings? 回答1: You can disable warnings for single lines in your CSS file by prepending the line with: /*

Hide IE warnings from console in Angular 6

*爱你&永不变心* 提交于 2021-01-27 06:03:23
问题 I am constantly getting these warnings when serving my angular app: e.g.: ./src/app/core/containers/navbar/navbar.component.sass (Emitted value instead of an instance of Error) autoprefixer: ...src\app\core\containers\navbar\navbar.component.sass:11:4: grid-auto-columns is not supported by IE Unfortunately, I am not interested in IE support. Is it possible to disable this type of warnings? 回答1: You can disable warnings for single lines in your CSS file by prepending the line with: /*

IE is not sending Client certificate in TLS mutual authentication

故事扮演 提交于 2021-01-27 02:48:52
问题 I am trying to establish a TLS mutual authentication with third party API. Client certificate is configured fine and when I try to access the end point url through Chrome it works fine(Chrome asks to confirm the certificate in a message box and when I does it the page displays with its content). Same thing when I try to do with IE it is not working and showing this message Cannot securely connect to this page This might be because the site uses outdated or unsafe TLS security settings. If

jquery color picker Spectrum not working on Internet explorer

白昼怎懂夜的黑 提交于 2021-01-27 02:25:14
问题 I am using Spectrum as a jquery plugin for the color picker to use it in the contenteditable divs. In chrome and firefox its working perfectly. But in Internet explorer its just showing the color palettes but when I select nothing is changed. However, if I exectute execCommand directly in this way it is working: $('#btn-color_font').click(function() { document.execCommand('foreColor', false, "#ff0000"); }); What am I doing wrong? Please help me how to use it in IE too. Thank you. jsfiddle

Debug angular 2 typescript application in IE

本小妞迷上赌 提交于 2021-01-27 02:04:30
问题 I can easily debug my Angular 2 (from an Angular-CLI generated project) Typescript files in Chrome and Firefox but I am unable to debug any of my typescript file in IE 11. All files I can see in the list are of type .js Can anyone guide me on what I am doing wrong or how to debug the application in IE? 回答1: in IE 11 you need to open your .ts file in debugger it found under "Dynamic Scripts". scroll down to and locate your .ts file and open it in debug. 回答2: IE 11 wont handle the maps files