internet-explorer-6

File downloads in IE6

假如想象 提交于 2019-12-10 19:09:26
问题 I've come across a rather interesing (and frustrating) problem with IE6. We are serving up some server generated pdfs and then simply setting headers in PHP to force a browser download of the file. Works fine and all, except in IE6 but only if the windows user account is set to standard user (ie. not administrator). Since this is for a corporate environment, of course all their accounts are setup this way. Weird thing is, that in the download dialog, the Content-Type is not recognized: header

Reset.css is overriding colgroup background in IE7/IE6

旧城冷巷雨未停 提交于 2019-12-10 19:06:36
问题 I have a table where the columns have a different background set by a colgroup. However, in IE6/7 it's completely ignoring the colgroup background and taking the reset.css background value for the cell (which is background:transparent). How can I fix this without having to go to each cell and manually entering a background value? HTML <table id="services-table" border="0" cellpadding="0" cellspacing="0" width="100%"> <colgroup> <col class="services-oddcolumn" /> <col class="services

Any JavaScript Library that makes CSS3/HTML5 website work on all browsers, including IE6-8?

我是研究僧i 提交于 2019-12-10 17:13:37
问题 Is there any JavaScript Library that makes CSS3/HTML5 website fully work on all browsers, including IE6-8? Latest eCSStener and Modernizr does not make CSS3 work on IE6-8 . 回答1: No. CSS 3 and HTML 5 (neither of which is even finished yet) make some things that are possible easier and some things that are impossible possible. You've already found libraries to simulate the bits that make the possible easier, but you aren't going to make the impossible possible using a JavaScript library. HTML 4

Hide a specific DIV if browser is IE6

谁说我不能喝 提交于 2019-12-10 17:07:54
问题 I have a DIV on my site that calls a few external javascripts... unfortunatley the vendor does not support IE6. This script is in the global footer, so its on every page. I get the error that our https site is passing content that is not secure, would you like to view the content...blah blah... Is is possible to just hide this div if the browser is IE6?? <div id="get-satisfaction"> <style> a#fdbk_tab { top:60px; } </style> <script type="text/javascript" charset="utf-8"> //content here <

CSS Floats - content falling down in IE6

百般思念 提交于 2019-12-10 16:10:37
问题 I have a layout with a menu DIV on the left. This is floated left with a fixed EM width. I then have a content DIV which has a left margin of more than the menu's width. So it sits nicely to the right of the menu and fills up the remaining space with both menu and content lined up perfectly. However, in Internet Explorer 6, if the content gets too wide it falls down below the menu. which means you have loads of whitespace and can't actually see any of the content at all without scrolling.

How to tell if current frame is parent?

自闭症网瘾萝莉.ら 提交于 2019-12-10 15:33:36
问题 I'm working in a framed environment, and trying to tell if the frame on which some javascript code executes is the top frame (the one that contains the rest). Up until now I was trying to check it with window.parent != null but it always returns false, like in this simple example. <html> <head> <script> alert(parent == null); </script> </head> <body> <h1>OH YEAH!</h1> </body> </html> Is there a way to do this? I doesn't have to be portable, right now I'm looking for the IE6 solution. 回答1: I

jQuery Ajax call very slow in IE, but instant in Firefox

一个人想着一个人 提交于 2019-12-10 15:16:39
问题 I am performing a jQuery .ajax() call that returns a List<string> of IP addresses on a specified subnet. I use a [WebMethod] on an .aspx page to return the values. ASP.NET's built-in JSON serializer does the magic to return the actual JSON used in my Javascript. I have profiled the the server-side time, and it takes about 8 msec to populate and return the list, so the server-side code is not the issue. However, when the Ajax call is initiated, in Internet Explorer it can take upwards of 3

Displaying images returned as ActionResult (byte array) causes IE6 to freeze

旧城冷巷雨未停 提交于 2019-12-10 13:03:20
问题 Microsoft MVC, C#, IIS, CSS question. I have a problem with the following scenario in IE6: I have a View that would display a variable number of images, each image returned from the controller side as a BinaryResult. These BinaryResult objects are then assigned to the src attribute of the img elements in the page. Example, if I load a page which has N number of images in it, I would be making N number of controller calls to get these images. These images are just very small thumbnails and in

How to detect IE6, and show alert?

不想你离开。 提交于 2019-12-10 12:55:29
问题 I'm trying to show an alert when a user using IE6 uses my site. I'm thinking something like this will work: <!--[if IE 6]> <script language="Javascript"> alert ("The year 2004 just called - they want their browser back!") </script> <![endif]--> I'd test this but I don't have a Windows box I can use ATM. Is this the correct way to do it? 回答1: Yes, that works: Of course, you could use something like this, which is a bit more friendly. 回答2: This has already been answered but I really wanted to

IE6 and 7 issue with innerHTML

烈酒焚心 提交于 2019-12-10 11:58:19
问题 IE6 and 7 issue with innerHTML I have used ajax in the application i have develop, but there are issues with IE6 and IE7, they doesn't support innerHTML. What must be used to fixed this issue and to be a cross browser compatible? the sample code looks like this. function showFAQ(src, target){ xhr.onreadystatechange=function(){ if(xhr.readyState == 4 && xhr.status == 200){ document.getElementById('resultDiv').innerHTML=xhr.responseText; } } str = "?action=get&request="+src; xhr.open("GET", ".