internet-explorer-8

What are the most likely causes of Javascript errors in IE8?

眉间皱痕 提交于 2019-12-17 22:33:38
问题 I'm seeing a lot of Javascript errors in IE8 on pages which worked fine in IE7 (and Firefox, Chrome, and Safari). I know that IE made some changes to things like Javascript security. Some of these don't give clear error messages - things like cross-domain violations can end up throwing very vague exceptions. Let's make a checklist of top offenders when we're troubleshooting IE8 Javascript errors. Please list one change to the way IE8 Javascript that would cause a Javascript error. 回答1: I can

How can I set CSS only for specific IE browsers?

旧巷老猫 提交于 2019-12-17 22:24:38
问题 I have a CSS/jQuery Checkbox style script: http://jsfiddle.net/BwaCD/ The problem is, in current browsers in order for the span to float over the input, the input's position must be absolute. But in IE8 & below, the script will not work and therefore I'm left with and absolutely positioned input that is just floating over other elements. I am not asking for the script to work in IE8 & below. I want to know how I can use CSS to set a specific style if it is IE8 and below. I guess jQuery would

<fb:login-button> problems with IE8 (Internet Explorer) only

亡梦爱人 提交于 2019-12-17 20:51:09
问题 On my site I've implemented Facebook login button and it works well on all browsers except IE. Not sure why on IE it doesn't work well. You can see it broken on the main page of my website http://colnect.com with the following Javascript error: Message: Unknown runtime error Line: 43 Char: 729 Code: 0 URI: http://connect.facebook.net/en_US/all.js On two other pages with the exact same FBML code http://colnect.com/en/account/create and http://colnect.com/en/sfGuardAuth/signin the button

How can I increase the bullet size in a li?

被刻印的时光 ゝ 提交于 2019-12-17 19:07:45
问题 The bullets in IE8 are so small, I tried changing the font-size, but that didn't work. Code: <ul style="padding:0; margin:0; margin-left:20px;"> <li>item 1</li> <li>item 2</li> </ul> Is there any way to do this without using an image for the bullet? 回答1: You could do this in an IE8 conditional comment... ul { list-style: none; } ul li:before { content: "•"; font-size: 170%; /* or whatever */ padding-right: 5px; } jsFiddle. In IE7, you could prepend the bullet via JavaScript and style it

WebBrowser control, isolation and IE8 InPrivate mode

让人想犯罪 __ 提交于 2019-12-17 18:59:00
问题 I have a need to run some automation tasks in a web browser control but I seem to be facing a few limitations/unknowns that I'm not 100% sure how to resolve. The application I'm running is not for public release, so I can enforce a prerequisite that IE8 is installed. GeckoFX (http://geckofx.org) would be great except it does not offer me an acceptable way to manipulate the DOM as I would using the WebBrowser's InvokeMember method on HtmlElement objects. WebKit.net would be even better but it

Multiple Internet Explorer instances on one machine [duplicate]

拜拜、爱过 提交于 2019-12-17 18:33:44
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine I am looking for a tool that can allow me to run Internet Explorer 6, Internet Explorer 7 (and Internet Explorer 8 if possible) on my machine. I found something on the Internet like this and some other interesting solutions, but I need your opinion based on experience. Which is the best choice for running multiple

IE8 web font iframe bug workarounds

偶尔善良 提交于 2019-12-17 18:22:20
问题 This blog post (slightly annoying page there) (and that's not my blog by the way) describes a bizarre bug I ran into yesterday in Internet Explorer 8 only. The bug involves .EOT web fonts and <iframe> elements. I haven't extensively researched the exact trigger for the bug, but it's basically the case that a page using a web font that loads content into an <iframe> such that the frame also uses a web font becomes "defaced" by the browser. The previously-OK text rendered with the web font

Why an inline “background-image” style doesn't work in Chrome 10 and Internet Explorer 8?

二次信任 提交于 2019-12-17 18:00:00
问题 Why the following example shows the image in Firefox 4, but not in Chrome 10 and Internet Explorer 8? HTML: <div style="background-image: url('http://www.mypicx.com/uploadimg/1312875436_05012011_2.png')"></div> CSS: div { width: 60px; height: 60px; border: 1px solid black; } Any ideas for workarounds? 回答1: As c-smile mentioned: Just need to remove the apostrophes in the url() : <div style="background-image: url(http://i54.tinypic.com/4zuxif.jpg)"></div> Demo here 回答2: Chrome 11 spits out the

How do you use mobile-first in IE8

拥有回忆 提交于 2019-12-17 17:34:48
问题 Considering that SingularityGS follows, by default, a mobile-first approach, how do you guys solve the problem in IE8, which shows the mobile version of everything that depends on media-queries? Have you found a solution for this or do I have to switch to desktop-first? Thanks. 回答1: Instead of working around IE 7 and 8 shortcomings, you can make IE 7-8 actually support media queries! I use the awesome Respond.js polyfill to enable media queries in IE 7 and 8. Just add this code to your HTML

Internet Explorer 8 timeout too quick on page POSTs

与世无争的帅哥 提交于 2019-12-17 15:53:42
问题 We have an asp.net site running, which has been working fine for some time, but recently I have been experiencing some issues with IE8. On posting some pages - mainly on our development server, although on staging too - we get an occasional "Internet Explore cannot display the webpage" error along with the button asking to diagnose connection problems. IE only seems to wait 10 seconds before timing out. I know that the page itself may take longer to load the first time (on dev and staging).