internet-explorer-8

Dropdownlist text is invisible in IE8

谁说胖子不能爱 提交于 2020-01-04 17:02:13
问题 For some reason my DDL options are all invisible in IE8. They're clearly there since the list has 127 options but the text is invisible. In Firefox everything shows up fine. I even tried putting an inline style on the select with the color set to black with !Important. When I inspect the DDL with Firebug it doesn't show it inheriting any styles, only what I've put inline. I added var to the first line in the loop in case it was some kind of pass by reference issue, hoping that var would

Dropdownlist text is invisible in IE8

蹲街弑〆低调 提交于 2020-01-04 17:02:11
问题 For some reason my DDL options are all invisible in IE8. They're clearly there since the list has 127 options but the text is invisible. In Firefox everything shows up fine. I even tried putting an inline style on the select with the color set to black with !Important. When I inspect the DDL with Firebug it doesn't show it inheriting any styles, only what I've put inline. I added var to the first line in the loop in case it was some kind of pass by reference issue, hoping that var would

JSF2.0 + Primefaces 3.0.1 + jquery 1.6.4 + p:commandLink + IE8 throws Unexpected call to method or property

懵懂的女人 提交于 2020-01-04 09:30:12
问题 Team, i am running the described setup on a maven based jetty (8.0.1) and get some strange exceptions in IE8 (only!). The Error that IE is given me, looks like: Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0) Timestamp: Wed, 29 Feb 2012 14:09:38 UTC Message: Unexpected call to method or property access. Line: 23 Char: 22640 Code: 0 URI: http://127.0.0.1:8080/javax.faces.resource/jquery/jquery.js.jsf?ln=primefaces&v=3.0.1 The described piece of

IE8 ADO warning when opening a record set with JavaScript

橙三吉。 提交于 2020-01-04 05:31:50
问题 I have a few HTML pages that use javascript to run sql queries etc. these html files are accessed from a share drive on the network. this works perfectly in IE6. My workplace is updating to IE8 and I now get the following warning: "This Web site uses a data provider that may be unsafe. If you trust the Web site, click OK, otherwise click Cancel." This is very annoying as every sql interaction results in this warning. I have spent a lot of time researching and the solution seems to be that I

how is it possible to click through a position: fixed; height: 100%; width: 100% overlay in IE8?

此生再无相见时 提交于 2020-01-04 04:39:48
问题 i have a bug i'm trying to narrow down and it's proving to be a doozie. i'm making a modal overlay and in IE8 for some reason i am able to click "through", focus inputs and select text underneath it. in IE9, FF, Chrome everything works as expected. unfortunately a reduced testcase i slapped together (shown below) works just fine in IE8. has anyone run into this bug before? hoping to save some time. thanks! <!DOCTYPE html> <html> <head> <style> div { background: pink; position: fixed; height:

Internet Explorer versions testing in February 2014: browserstack, saucelabs, ghostLab, spoon & other tools

不羁岁月 提交于 2020-01-04 04:04:09
问题 I am currently (February 2014) trying to find the best tool to perform Internet Explorer versions testing (IE8, IE9, and so on) . I found that my options were the following: Run any web browsers instantly from the web, using: www.browserstack.com, saucelabs.com , ghostLab or www.spoon.net Run IE VMs from Modern.IE project (for IE web browsers testing) One Windows VM + multiple standalone versions of Internet Explorer using http://utilu.com/IECollection/ (for IE web browsers testing) Dedicated

How to create a new HTMLDocument in IE?

ぐ巨炮叔叔 提交于 2020-01-04 03:51:31
问题 dcoument.implementation.createHTMLDocument [2] is one of the lesser-known DOM methods that (surprise!) creates a brand new HTML document. Unsurprisingly, browser support is rather poor, but I found some workarounds: Use an XLSTProcessor (crazy stuff!) in Firefox < 4 Create an empty iFrame: var iframe = document.createElement('iframe'); iframe.style = 'display: none'; iframe.src = 'data:text/html,<!DOCTYPE html><title></title><body>'; document.body.appendChild(iframe); newHTMLDocument = iframe

Some images won't display in IE7 or IE8

ⅰ亾dé卋堺 提交于 2020-01-03 21:10:03
问题 I can't figure out why this image (and others like it) will not display in IE7 or IE8. It displays perfectly fine in IE9, Chrome, Safari, Firefox, on Mac or PC and multiple versions of these browsers. http://images.appletree.com/icon/woman_big.jpg On the other hand, other images from the same server (when served either from S3/Cloudfront or my server) display fine. Like this: http://images.appletree.com/tree.png I've checked web-sniffer.net and the failing image above returns the correct

Textarea in IE8 Newline issue

ⅰ亾dé卋堺 提交于 2020-01-03 16:49:41
问题 I'm making a cross-browser form, which requires a textarea. This textarea receives data by two ways: - Sending an Ajax call to the server and returning data - User inputted data http://jsfiddle.net/garrettwong/x3KSP/ I'm having an issue on IE8 where the textarea text is not formatted (newlines not being read), where as in Chrome, the same code, nicely formats the textarea. I'm hoping to use a solely JavaScript solution if possible, but I'm not sure where to go from here. 回答1: Why are you

what is the alternate function for indexOf for string in IE8?

£可爱£侵袭症+ 提交于 2020-01-03 15:56:12
问题 I have used indexOf to check whether i have particular text is present in a sentence or not like the following var temp = ""; temp="data not available"; if(temp.indexOf("datas") == 0){ alert("True"); } else{ alert("false"); } The problem i was facing is indexOf is not supported in Internet Explorer 8 . How to perform this operation in IE8 too? Is there any default alternate functions available in jquery? I tried inArray but it supports only array. fiddle 回答1: I think you're confused about