internet-explorer

Issue with specific version of IE/ Edge browsers (“Session_Start” event is triggered)

倖福魔咒の 提交于 2020-02-06 07:29:51
问题 I am facing a strange issue in a particular version of IE/ Edge browsers (Ex:- IE 11.0.9600.19329). The issue is, when I click on 'Ctrl+P' on a specific page in my application "Session_Start" event gets fired, which is not happening in other browsers. I have verified different forums, but couldn't find any solution. Any suggestion to resolve this issue? 回答1: Can't reproduce the problem, it works well on my side. Try to reset the browser setting (IE browser and Edge browser), if still meet

Internet Explorer 7 & 8 issue with Prototype 1.6.1 - Could not complete the operation due to error c00ce56e

我只是一个虾纸丫 提交于 2020-02-05 08:57:09
问题 I'm at a loss. I found a few things that mentioned IE needed to have the response type specified and I changed that to text/html and that did nothing for me. There Error: Could not complete the operation due to error c00ce56e. prototype.js, line 1564 Points to in prototype.js: if((readyState > 2 && !Prototype.Browser.IE) || readyState == 4) { this.status = this.getStatus(); this.statusText = this.getStatusText(); this.responseText = String.interpret(transport.responseText); <!--- ERROR is

IE returns incomplete HTML via Ajax

走远了吗. 提交于 2020-02-05 06:34:27
问题 It comes down to this line: jQuery.ajax( { type : "POST", url : "....", data : daten, dataType: 'html', success : function(response) { jQuery('div[id="Main"]').html(response); ... The problem ist that IE responds incomplete blocks of the "response" depending of what IE Version I use. Like it does not return any content in IE 8 whereas it returns like 90 % of the content in IE-9. Interesting thing is: in IE-9 it cuts off html-code (like 10 lines) but then it goes back on. It does not cut off

Horizontal jquery sortable list, placeholder width is incorrect in IE11 when scroll is visible

淺唱寂寞╮ 提交于 2020-02-05 06:31:08
问题 I have a horizontal list which I am trying to sort using jqueryui sortable. As long as all items fits the window it works perfectly. But when I have many items, so that the scrollbar appear the placeholder width is to small. Or actually when I inspect the placeholder in IE developer tools the width is set to the correct value but it is still displayed as just a thin line. I have noticed that adding padding to the placeholder style can make it wider, but why can't I use the width? What I

VSTS build running locally - error: “Microsoft Internet Explorer. Enhanced Security Configuration”

一曲冷凌霜 提交于 2020-02-05 05:20:07
问题 I'm running Windows 10 and making a script to handle/start VSTS builds. Sample call (overriding properties for testing): $env:SYSTEM_TEAMFOUNDATIONCOLLECTIONURI = "https://mytenancy.visualstudio.com/" $env:SYSTEM_TEAMPROJECTID = "Project1" $env:SYSTEM_DEFINITIONID = 5 #$env:SYSTEM_ACCESSTOKEN = "mytoken" - uncomment when running locally $url = "$($env:SYSTEM_TEAMFOUNDATIONCOLLECTIONURI)$env:SYSTEM_TEAMPROJECTID/_apis/build/definitions/$($env:SYSTEM_DEFINITIONID)?api-version=2.0" Write-Host

How to center flex items in IE

烈酒焚心 提交于 2020-02-04 02:17:06
问题 I'm having an issue with flex in IE. My text doesn't appear to be centering correctly. It works fine on all other browsers, however on IE it seems to break its container. I've tried playing around with min height and width, but I'm still having trouble. Any help would be really appreciated, thanks in advance. JS FIDDLE * { margin: 0px; padding: 0px; } .menu_container { position: relative; overflow: hidden; display: -webkit-box; display: -ms-flexbox; display: flex; width: 100%; } .box { height

How to write CSS for IE at stylesheet with other default styles

时光总嘲笑我的痴心妄想 提交于 2020-02-04 01:11:48
问题 I'm working with responsive website. I've used media queries for making that responsible. Basically, I haven't used any fixed width. I've used percentage as a width of every div. So that the website can be scaled proportionally according to resizing of browser. For using percentage of wide may be caused problem for older ie. As ie prior to ie 9 don't support media query, so, I want to build the non-scalable version for those ie. As I gave only few code for bringing scalability, so is it okay

IE10 and below Browser detection

余生颓废 提交于 2020-02-03 07:28:50
问题 I just want to target only IE10 and below versions IE browsers. Please help me for this. I have tried below code var userAgent = navigator.userAgent; var regexIe8 = new RegExp("Trident(\/4.0)|(Trident\/5.0)"); if (regexIe8.test(userAgent)) { alert("test1"); } else { alert("test2"); } 回答1: In Internet Explorer 11, Microsoft took out the "MSIE", so it now looks like this: Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko So you could just check for the presence of "MSIE" to

How to stop Injected HTML-div / CSS from inheriting styles ? (Internet Explorer)

∥☆過路亽.° 提交于 2020-02-03 06:42:32
问题 I am creating a extension for Internet Explorer where I am injecting CSS-styled span tags on webpages. If a specific part of this component is clicked on, a popup is shown. This popup is in reality a "DIV"-element that I am injecting at the very end of the content page:s "BODY"-tag. I have a CSS-styled table inside this div, and depending on which site I am on, the appearance of this popup is either according to specification (in regards to width, and so on), or not. I don't have that much

PowerShell programmatically set input field by name in IE

孤人 提交于 2020-02-02 16:17:40
问题 Related: Powershell: Download or Save source code for whole ie page The input fields I need to programmatically drive do not have an ID, so I'm trying to set them with the form name instead. In the IE F12 developer console, this command works: document.forms["loginForm"].elements["_ssoUser"].value = "someone's username" But in PowerShell, this command fails: $ie.document.forms["loginForm"].elements["_ssoUser"].value = "$username" The error is "cannot index into a null array". 回答1: You may be