internet-explorer-8

Multiple background images IE8

╄→尐↘猪︶ㄣ 提交于 2019-12-18 11:56:34
问题 Is there any jquery plugin (or any other way) to force IE8 to show multiple background images? 回答1: CSS3 Multiple Backgrounds for Internet Explorer and legacy Mozilla Firefox This library brings support for multiple background images to Internet Explorer 6-8 and Firefox <=3.5 by reading the CSS code from style and link tags. CSS3 browser support extends to background-image, background-position, background-repeat. This library only implements its own property for the shorthand style background

How to maintain PNG alpha transparency when using “-ms-filter” property

天涯浪子 提交于 2019-12-18 11:43:11
问题 I have the following HTML: <a><img src="myfile.png" /> Some text</a> And this css: a:hover { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75); opacity: .75; } The problem with this occurs in both IE 8 and IE 7. When the PNG image is subject to the -ms-filter or filter , its alpha transparency is ruined. Try it out and you will see. It is a bug in both IE 8 and IE 7. Can I remove the "-ms-opacity" and "filter"

How can I detect if IE8 is running in compatibility view?

我是研究僧i 提交于 2019-12-18 10:51:01
问题 Is there anyway to determine if an IE8 browser has compatibility view switched on? I can't seem to find anything on Google, and so I'm wondering if this is a piece of information that is available... Why you ask!? I'm trying to track down a bug in our application. I'm piecing through the Elmah logs and there seems to be a trend; this error is generally thrown by IE8. I tried to repo the defect in my copy of IE8, but couldn't. I want to narrow down the culprits, and thought this might be a way

Shadow & Opacity In css3 For IE8 (Not Match)

喜你入骨 提交于 2019-12-18 09:40:21
问题 i have some images (in front of my bachground-image) with low opacity(png format) and every thing was good in ie8 & firefox until i add pie.htc(or border-radious.htc from google code) for rounded corners & Shadow Box in ie8... after adding pie.htc by : behaviour : url(pie.htc); and adding below codes : border-radius:15px; -moz-border-radius:15px; -webkit-border-radius:15px; box-shadow: 5px 5px 20px red; -moz-box-shadow: 5px 5px 20px red; -webkit-box-shadow: 5px 5px 20px red; the opacity of my

FB.logout not working in IE8

 ̄綄美尐妖づ 提交于 2019-12-18 09:33:43
问题 I've integrated facebook login with my application and I want to logout the user from facebook when he logs out of my application. So I did the following: <a href="<c:url value='/security_logout'/>" onclick="FB.logout();">Logout</a> This works on Firefox and Chrome but doesn't work on IE8. In IE8 the user is logged out of the application but is not logged out of Facebook. Anyone else experiencing this? 回答1: Please try this one <script src="http://connect.facebook.net/en_US/all.js"></script>

IE8 is not recognizing my regular expression

浪尽此生 提交于 2019-12-18 09:31:06
问题 I'm trying to parse an AJAX response and get the id of the body tag. I can't do this via jQuery, though, because jQuery can't emulate a DOM response for a body tag. I've split this into many lines to try and isolate the error. This works in modern browsers, but it's failing in IE8. var bodyIDregex = new RegExp(/<body[^>]*id=["'](.*?)["']>/gi), matched = html.match(bodyIDregex), bodyID = bodyIDregex.exec(matched[0]); bodyID = bodyID[1]; I have confirmed that the value of the variable html is

Object doesn't support this property or method with primefaces omnifaces timeout combination

瘦欲@ 提交于 2019-12-18 07:10:41
问题 Setup: JSF, PrimeFaces 3.2, Omnifaces 1.1, JBoss AS 7.1.1, Final, Mojarra 2.1.7 I have a simple page (listed below) and I have set up omnifaces to deal with ViewExpiredExceptions for ajax calls. When the listed below page expires and I click on a primefaces button (ajax) on IE8, the expired error page shows up but with the following javascript error: Message: Object doesn't support this property or method, Line: 1 Char: 5500 Code: 0 URI: blah blah/mywebapp/javax.faces.resource/primefaces.js

Using the IE8 'Developer Tools' to debug earlier IE versions

我们两清 提交于 2019-12-18 06:17:20
问题 I am less than satisfied in my HTML/CSS/JS debugging of pages with IE6 and 7 specific bugs. I am aware that IE8 has a Firebug clone, called 'Developer Tools' installed. Is it possible to have IE8 installed (maybe on a VM, i don't mind), set it to compatibility mode (is there one for IE6?), then perform JS debugging and live HTML changes, using the IE8 Developer Tools , just like we can in Firebug? many many thanks mieze 回答1: There are differences between native IE6/7 and the IE8 compatibility

ActiveXObject in IE8

别说谁变了你拦得住时间么 提交于 2019-12-18 05:14:14
问题 I want to use javascript to create a textfile, so I used : This Line of code: var fso = new ActiveXObject("Scripting.FileSystemObject"); It's working properly in IE6 but not in IE8. Any suggested solution? 回答1: IE8 internet setting is more secure, to it doesn't allow activex objects. If you have to run this, goto Tools->Internet Options-> Security->Custom Level->choose enable or prompt activex.. 回答2: Try this, this may help you. Close the IE. Right click on IE and Run as Administrator.

jQuery .height() outputting same value as .scrollHeight on div with overflow:auto (IE8)

依然范特西╮ 提交于 2019-12-18 05:00:11
问题 After routing around many other questions I have not found an answer that fixes my problem. I am writing a script to find out whether the div is overflowing. But when trying to retrieve the visible height with jQuery.height() , jQuery.innerHeight() or JavaScripts offsetHeight . I am given the value of the whole div (Including the part which is overflowing) i.e: the same value as scrollHeight. The containing DIVs style: { overflow-x: hidden; overflow-y: auto; width: 73%; bottom: 0px; float: