internet-explorer-8

setInternet2 cannot connect windows

大兔子大兔子 提交于 2019-12-24 11:06:27
问题 At work I usually have to set the setInternet2(use=TRUE) option in order to access cran for updating packages etc.. However after they updated win explorer to version 8 this doesnt seem to work anylonger. This is the output after trying to install e1071 both with and without the setInternet2 option invoked. Any ideas if this can be remedied? > install.packages("e1071") Installing package(s) into ‘P:/R prg/R-2.13.1/library’ (as ‘lib’ is unspecified) Warning in install.packages : unable to

Facebook comments count IE8 innerHTML error

余生颓废 提交于 2019-12-24 10:59:58
问题 On Internet Explorer 8, on pages where there are comments count tags like <fb:comments-count href="<%= item_url(@item) %>"></fb:comments-count> , there will be error in Internet Explorer 8. Could not set innerHTML: unknown runtime error. Line: 40, Character: 327 http://connect.facebook.net/en_US/all.js All other Facebook plugins (like button, comments box) works as expected. 回答1: I found out that the facebook namespace declaration have to be at the head level. I changed from <html> <head

Chained pseudo-selectors in IE8

蹲街弑〆低调 提交于 2019-12-24 10:58:28
问题 Chained pseudo-selectors do not seem to work in IE8 on Windows XP. Is there any documentation about this? I'm developing a website using Selectivizr in order to use CSS3 selectors, but a style such as this doesn't work in IE8, whereas it works everywhere else (unsurprisingly): span:last-child:after {content: "foobar";} 回答1: This is not a bug, it's due to the fact the the selector doesn't match natively. A simple selector is either a type selector or universal selector followed immediately by

clientHeight returns different values depending on the mode IE8 is in

不问归期 提交于 2019-12-24 10:17:30
问题 In a javascript function I use document.body.clientHeight to get the height of the body. Now depending on the mode IE8 is in (i.e quirks or standard), the value is different. Example In quirks, document.body.clientHeight = 800px In standard, document.body.clientHeight = 650px Hope I've made sense. Please help. 回答1: Quirks mode and Standards mode return value is inconsistent. Since you tagged it as jQuery, just use $('body').height() or $(window).height() depending on what you need... it fixes

jQuery live not working in IE8

僤鯓⒐⒋嵵緔 提交于 2019-12-24 10:14:57
问题 The following works in Firefox 3 and IE 7 but not in IE8. Given this HTML snippet: <li><a href="#" class="remove">remove me</a></li> javascript: jQuery('.remove').live('click', function(e){ jQuery(this).parent().remove(); }); I wish I had an error message to work with but I don't. How can I get this to work in IE8? I should also mention that the anchor tag is being generated by prototype version 1.6.0. UPDATE: This is a bug in Prototype 1.6.0 and is fixed in 1.6.1 See Issue 回答1: As I

submit button with background image in internet explorer 8

天大地大妈咪最大 提交于 2019-12-24 10:10:10
问题 On this site, I have a search form whose submit button has a background image But when I view the site in IE8, the image doesn't appear. Is there anything I can do to persuade IE8 to show the image (that doesn't cause it to disappear in other broswers)? 回答1: It appears that the image is present, but barely visible. Try setting the height and width of the input . This makes the image visible for me: .searchform INPUT[type='submit'] { width: 18px; height: 18px; } 回答2: I got it working in IE8 in

IE8 is doing my head in! I am getting completely different results in different versions of the same browser

妖精的绣舞 提交于 2019-12-24 09:57:03
问题 I am developing a site & it all looks good on Safari, Chrome, Firefox, even IE7 but my client keeps telling me that IE8 is screwed up. I can only recreate the errors that he is getting by using IETester on my Windows 7 machine. My testing environment: I have 3 different versions of IE8 to test with & am getting completely different in the 3 versions I have to test with. I use a mac, so all tests are done on 2 virtual machines using VirtualBox - Vista with IE8 installed & Windows 7 with IE9 &

Fieldset padding in IE8

♀尐吖头ヾ 提交于 2019-12-24 09:37:03
问题 I am pretty new to web work. I apologize if this question is trivial or overkilled. I did some searching for fieldset padding, but didn't see anything specific to this. Here is what my window looks like in Chrome vs IE8. Chrome: http://i.stack.imgur.com/rH7w0.png IE8: http://i.stack.imgur.com/6v6kZ.png As you can see, all of the padding has been completely thrown away. <fieldset> <legend>Refresh Settings</legend> <table> <tr> <td class="AutoRefreshEnabled"> Auto-Refresh Enabled:</td> <td

how to use firebug in ie8

寵の児 提交于 2019-12-24 09:35:13
问题 A tutorial I'm doing uses firebug lite in IE8 to run jquery code, inspect the DOM, etc. I have a link reference to firebug lite so that I can use it in IE8. I know I can use firebug in FF and I know about the inspect tool in IE8, however, since firebug lite is supposed to be compatible with IE8, I'd like to use it in IE8. Can anyone help me out? <script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script> Thanks 回答1: It should work by just adding this script to the of

Polyfill/fix for using dot notation on reserved JS words like 'function'

a 夏天 提交于 2019-12-24 08:37:08
问题 This question is a followup of this Background: var a = function(){ console.log("function is() initialized"); }; // assign a property named 'function' to function 'a' a.function = function afunction(f){ return (typeof f === 'function'? true: false); }; // Use our is function to test if a given variable is a function a.function(a); // IE throws 'expected identifier' error v/s Chrome correctly outputs "true" Solution Use bracket notation to avoid interference as described here i.e. a["function"