internet-explorer-8

Silverlight 2 Does not render content on IE7 IE8 Firefox 3

≡放荡痞女 提交于 2019-12-11 05:32:55
问题 I have a very simple silverlight xaml page displays textbox and a button. When i run my application on IE6 it works fine. But for IE7 IE8 and FF3 - it does not display any content. The page is rendering blank. <div style="height: 100%; width:100%;"> <asp:Silverlight ID="Xaml1" runat="server" Source="~/ClientBin/test.xap" MinimumVersion="2.0.31005.0" Width="100%" Height="100%" HtmlAccess="Enabled" /> </div> Does anyone has any idea what silverlight content is not rendering ? 回答1: I found an

Images are showing up as red x's on IE, shows up fine in other browsers

谁说胖子不能爱 提交于 2019-12-11 05:28:53
问题 Using IE8, when I view one of our webpages, some of the images aren't showing up and just show red X's with the alt text. The same page (copied the url) works just fine in Chrome and Firefox. Other users are experiencing this problem as well. The thing is, when I initially viewed the page after someone let me know there was a problem, the images loaded fine, but a few minutes later they experienced the problem. If I view just the image as mysite/image.jpg it shows the red x as well and if I

addEventListener doesn't work in IE (tested in IE8) [duplicate]

狂风中的少年 提交于 2019-12-11 04:54:45
问题 This question already has answers here : addEventListener not working in IE8 (9 answers) Closed 5 years ago . Work in Chrome and FF but not in IE. Fiddle I have tried solution from here but doesn't help. if(window.attachEvent){ // Attach event code here window.attachEvent("load", toolify); } else{ // Addeventlistener code here window.addEventListener('load',toolify,false); } Error from IE: Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0;

Unspecified Error from Google Maps API on IE8

房东的猫 提交于 2019-12-11 04:47:29
问题 My page is returning SCRIPT16389: Unspecified error in IE8. I think I have found the reason for it but no solution. The error is coming from Google Maps API, function mq(a,b). The problem is that IE8 does not appear to be able to handle getBoundingClientRect() on asynchronously loaded content, and I'm loading content using jQuery.load(). The error doesn't occur if I create a page with the same content loading with the page rather than asynchronously. The error occurs on page load and then any

Problem getting excanvas to use getContext in IE8

我与影子孤独终老i 提交于 2019-12-11 04:31:57
问题 I am trying to implement excanvas in order to ensure canvas tags work in IE8 as well as all the other browsers we use here. I am having an issue getting getContext to work in IE8. I have read about the need to us the G_vmlCanvasManager.initElement routine when dynamically creating canvas objects in the DOM, however I cannot even get statically created objects to work in IE8. I can tell the canvas is create properly because the border appears. All other browsers have no issues. Here is the

AngularJS ng-src in ie8: image not loaded and “unsafe” added to path

雨燕双飞 提交于 2019-12-11 04:14:19
问题 I just wanted to add an image to my app. As advised, I used the ng-src directive: <img ng-src="{{app.imgBig}}" alt="lorem ipsum" height="100" width="200" title="lorem ipsum" /> It works fine on most browsers but it doesn't on IE8. The image is not loaded as instead of adding the absolute url to the file name, it returns the relative path and adds " unsafe: " before it. Actually, it's trying to load: unsafe:img/test.jpg Instead of: http://url_of_my_site.com/img/test.jpg So you know, it may be

Can't get CSS3Pie to work

寵の児 提交于 2019-12-11 03:55:04
问题 I feel so stupid, like I'm missing something really obvious but I have checked everything a bunch and can't figure out what's wrong. I'm trying to use CSS3pie to make rounded corners in ie8, but it just won't take. I have the path set up relative to the html document, not the css. It's in a folder called pie, so this is what i'm using in the CSS: #recommended-acc { float: left; width: 472px; background: url(../img/cont_bg.png) repeat; margin: 10px; padding: 0 10px 6px 0; -webkit-border-radius

IE8 property enumeration of replaced built-in properties (e.g. `toString`)

折月煮酒 提交于 2019-12-11 03:39:37
问题 I've run into a very odd issue with IE8's JS engine (possibly previous versions as well, but NOT IE9 in IE8 mode since the JS engine doesn't fallback). Simplified example: var foo = { toString : 42, x : 22 }; for(var n in foo){ console.log(n) } // result: "x" In other words, the toString property never gets enumerated. Nor would valueOf , hasOwnProperty , etc... or var x = 5; x.toFixed = 42; So any property that natively exists can not be enumerated as far as I can tell, even after you

jQuery.change + inline onchange fn() causes fn to execute twice

吃可爱长大的小学妹 提交于 2019-12-11 03:27:16
问题 Posting this even though I found the answer and a workaround, in the hopes that it helps someone else. Basically, when using IE8 and changing an element's value that has both jQuery.change hooked to it and an inline onchange defined, the code in onchange executes twice . We ran into this in an ASP.NET (3.5 or 4.0 does not matter) project with jQuery 1.4.2 and AutoPostBack=true controls, which render out with onchange="__doPostBack(...)" attributes, causing the postback to happen twice for a

opacity in IE8 not working

独自空忆成欢 提交于 2019-12-11 03:26:32
问题 I have set opacity for a overlay which is working fine in FF, Chrome, Safari and IE9 but not in IE8. I googled alot but did not find any solution. my css code is #overlayEffectDiv { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; width: 100%; height: 100%; filter: alpha(opacity = 50); -moz-opacity: 0.5; -khtml-opacity: 0.5; opacity: 0.50; background: #000; position: absolute; top: 0; left: 0; z-index: 3000; /* hide it by default */ display: none; } In FF it is looking as