internet-explorer-6

Why does IE show the gray boxes below the content, instead of above?

爷,独闯天下 提交于 2020-01-06 07:10:18
问题 http://www.webdevout.net/test?013&raw Shrink the window in IE6 / 7 to see what I'm talking about. I stripped out all of the critical parts of my application (had to), but basically those gray boxes are supposed to be drop down boxes. In modern browsers, it works fine... but in IE6 / 7, the page content overshadows it (as well as some of the navigational links ).... any ideas? I can give anymore information needed, just let me know. (page & code @ above link, and also posted down here for ease

IE6 NonSecure Items

妖精的绣舞 提交于 2020-01-06 05:00:08
问题 So I'm chasing down the non-secure item on my page. I am using the JQuery library to make an accordion menu. I suspect that the maybe the problem. Does anyone know if this href would be problematic? I can't find any blank src paths or http:. Thanks Nick 回答1: I had the same problem and I found a wordaround to the "non secure items" alert in IE8+. The alert occurs if you are creating dynamic content with jQuery using wrap() or append() functions, and if this content contains CSS with relative

How to block the drop down in IE6

允我心安 提交于 2020-01-06 05:00:07
问题 In my project I am using the update progress bar. When the button is clicked the background page will be disabled. It works fine in IE7, Firefox and Chrome. But in IE6 the dropdown is displaying behind the progress bar. Can any one help me to solve this problem. Here the code: <%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="fp_t012stk.aspx.vb" Inherits="fp_t012stk" title="Current Stock Report" %> <asp:UpdateProgress id="UpdateProgress1"

How to block the drop down in IE6

这一生的挚爱 提交于 2020-01-06 05:00:06
问题 In my project I am using the update progress bar. When the button is clicked the background page will be disabled. It works fine in IE7, Firefox and Chrome. But in IE6 the dropdown is displaying behind the progress bar. Can any one help me to solve this problem. Here the code: <%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="fp_t012stk.aspx.vb" Inherits="fp_t012stk" title="Current Stock Report" %> <asp:UpdateProgress id="UpdateProgress1"

Adding onclick event to li element in IE6

做~自己de王妃 提交于 2020-01-05 07:33:59
问题 So I have a list, and I want to dynamically add an event via JavaScript. I have it working great in Firefox, but I also need it to work in IE6 (ugh), but it's required. It doesn't have to be pretty, just needs to work. The event that triggers simply removes the item from the list. I am not sure what I need to do to get it working. Here is small piece of what I have so far. The ids are unique, I just put that one in as an example. It works great in all newer browsers. var id = "123456"; var

Adding onclick event to li element in IE6

僤鯓⒐⒋嵵緔 提交于 2020-01-05 07:33:52
问题 So I have a list, and I want to dynamically add an event via JavaScript. I have it working great in Firefox, but I also need it to work in IE6 (ugh), but it's required. It doesn't have to be pretty, just needs to work. The event that triggers simply removes the item from the list. I am not sure what I need to do to get it working. Here is small piece of what I have so far. The ids are unique, I just put that one in as an example. It works great in all newer browsers. var id = "123456"; var

How do I get IE6 to take ContentType seriously?

别来无恙 提交于 2020-01-05 04:25:35
问题 I'm fighting with a third-party ActiveX control that we are using to load TIFF images into the client browser from an ASP.Net(3.5) web form. The ActiveX control registers itself correctly (as far as I can tell) as the MIME handler for TIFF images and works correctly every time a file is double-clicked locally. However, IE6 and the ActiveX control behave differently depending on a few situations that I've been able to identify so far. EDIT The ActiveX control is not actually in the web page at

Button element styled with CSS is not showing the background-image in IE6

本秂侑毒 提交于 2020-01-05 02:49:06
问题 I have a legacy web application that is targeted for IE 6 and is being reskinned. The buttons are having the default browser button look replaced with a blue button image. My following HTML and CSS works fine on IE 8, but not in IE 6. HTML <button id="add">Add</button> CSS button { width: 110px; height: 28px; background-image: url('../images/button.png'); background-color: transparent; border: 0px none #ff0000; cursor: hand; font-family: Myriad Pro, Helvetica; font-weight: bold; font-size:

How to center a <div> element in IE6

喜欢而已 提交于 2020-01-04 05:49:08
问题 trying to implement a dialog-box style behaviour using a separate div section with all the stuff inside it. When the "dialog box" needs to be shown, it has to display at the center of the WINDOW, not in the center of the page, that is, REGARDLESS of the scroling position. Furthermore, the correct solution will not move the "dialog box" if the user scrolls the page. In Chrome and FF this works using position='fixed' and centering the div in the intuitive way. This does not seem to work in IE6

iFrame src something other than javascript:false but same effect

可紊 提交于 2020-01-04 04:05:14
问题 Is there any other way to write javascript:false that is more pleasant? I'm building a print functionality for an intranet app (for IE6) and I make the printed page using an iframe: $('body').append('<iframe id="printIFrame" src="javascript:false"></iframe>'); $("#printIFrame").attr('style','position:absolute;left:-500px;top:-500px;'); Without having javascript:false in the src, I'll get the "This page contains both secure and nonsecure items" popup when I create it. However the downside of