internet-explorer-8

Opening .docx/.docm file inline to <iframe> in IE-8 browser with JSF 2.0 is showing blank iframe with multiple session

て烟熏妆下的殇ゞ 提交于 2019-12-14 03:04:08
问题 I am using <iframe> to open MS Office 2007/2010 document file like docx/docm in a JSF 2.0 project that is deployed at Websphere App Server 8.5, and accessing its url from a client having Windows Server 2008 and MS Office 2010 installed with IE-8 browser. the src of <iframe> is the document url, the example code of <iframe> is exampled here from my .xhtml page. <iframe width = "80%" height = "90%" src = "http://<ip>/files/test.docx"> When we open the respective url with this <iframe>, test

IE8/Firefox Behavioral Difference

六眼飞鱼酱① 提交于 2019-12-13 23:54:31
问题 I'm working on login page written as a JSP. It's pretty simple but behaves differently in IE8 and Firefox (big surprise there). I have not tested this is other browsers yet. I could probably hack a fix in with some Javascript but I was looking for more information about the behavior, before I just implement a workaround, with hopes of a cleaner fix and avoiding this problem in the future. The server-side generated HTML snippet in question is this: <form name="member_session_info" method="post

Excanvas does not work in IE8 at all [duplicate]

回眸只為那壹抹淺笑 提交于 2019-12-13 22:12:07
问题 This question already has answers here : Possible to get Excanvas to work in IE 8? (7 answers) Closed 6 years ago . I simply cannot get excanvas to work at all. I have tried everything I can think of. I am even uploading the examples that come with excanvas to my website and testing them and they do not even work. I don't know if it has something to do with my server or what, but I haven't seen a working excanvas image yet. for instance... I this example comes with the excanvas package and it

How to force intranet sites browser into IE8 Quirks Mode?

强颜欢笑 提交于 2019-12-13 19:35:42
问题 I have an intranet site built using ASP.NET that when rendered always displays in standards mode. When using the Developer Toolbar, my site works perfectly using 'IE8 - Quirks Mode'. When using Standards mode it does not appear properly. I have seen a dozen posts about setting the app into Standards mode (like this one: Override intranet compatibility mode IE8) but these techniques make the browser go to Standards mode. Does that mean Quirks is the default? If that's the case, my site is not

User Agent is not accessible in Internet Explorer 8 using ActionScript 3

不羁岁月 提交于 2019-12-13 19:14:28
问题 I am using the code below to find the User Agent using ActionScript 3: var userAgent:String = ExternalInterface.call("navigator.userAgent.toString"); The code is working in Firefox 13, Google Chrome & Opera, but the User Agent value as null in IE8. Is there any code snippet that will work here or any other way to implement this? 回答1: toString is unnecessary, since userAgent is a string property. Use this syntax instead: var userAgent:String = ExternalInterface.call("function(){return

getElementsByTagName(…).0.parentNode' is null or not an object

假如想象 提交于 2019-12-13 18:58:44
问题 I'm using Google Chart for my application and I have to convert the generated chart to image byte code . I've done this in Firefox and Chrome but IE8 is not responding to get the svg element , So now I can't to get the byte code from the given div element. My script to convert div element to byte code is given below function getElement() { for (var i = 0; i < divelement.length; i++) { toImg(document.getElementById(divelement[i]), i, medicalconditionid[i]); } } function toImg(chartContainer, i

Problem with :contains selector in IE8

烂漫一生 提交于 2019-12-13 18:15:32
问题 I'm working on the following selector in jQuery: $("div[id^=WebPartWPQ]:has(table.ms-sitedirresultssort) td:contains(' : ')").closest('div') In other words: select the div with ID starting with WebPartWPQ that has a table with class ms-sitedirresultssort that has a td containing the text : . At the end of this question is the HTML rendered by SharePoint. The selector works perfectly under Firefox 3.5, however not under Internet Explorer 8. I'm testing by using the hide() function. I've

rotate element using css in IE8 for -45deg

半世苍凉 提交于 2019-12-13 18:12:41
问题 I want to rotate an element in browsers including IE8. For all other browsers execpt IE8 I can do: <vendor>-transform: rotate(-45deg) For IE8 I know I have to use -ms-filter: "progid:DXImageTransform.Microsoft.Matrix but I'm unsure what matrix manipulations to set. My matrix brain is kind of rusty. Anyone? 回答1: This should do it: -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0

getElementsByTagName and getElementsByClassName not working in IE8 [duplicate]

风流意气都作罢 提交于 2019-12-13 17:32:08
问题 This question already has answers here : getElementsByClassName() doesn't work in old Internet Explorers like IE6, IE7, IE8 (5 answers) Closed 5 years ago . Sample Source: <div> <br /> <a name="IDATLQHE"></a> <h2 class="subhead" xmlns=""> <div class="dummy"> <div class="dummyy"> <span>abcd</span> </div> <div class="dummyyy"> <span> <a title="google" href="http://google.com">google.com</a> </span> </div> </div> </h2> </div> Output needed: I want to replace the contents of the <a> element in

Cross-Site XmlHttp (XDomainRequest)

ぃ、小莉子 提交于 2019-12-13 17:11:50
问题 I'm writing a web-based tool for my company and it is running off the local intranet and running in IE8. I believe since the company computers are in a SOE, nobody has control over the browser settings except the IT department and they will be unlikely to make any changes, at least not in the timeframe we need it. I have an XmlHTTP request to a URL which is in "Trusted Sites" (also on the local intranet), but when I send the request, I get an exception: "Access is denied", and when I catch