internet-explorer-6

IE6 Not caching my images

自作多情 提交于 2019-12-25 11:56:46
问题 I uploaded my web application already in my Production Tomcat Web Server. I am trying to test it already and it works fine on FF/IE7/IE8 but I am having a problem on display on IE6. I notice in the status bar that IE6 seems to be downloading the images every now and then. Even though I did not click anything, it still downloads the images. I am using a menu that uses images and it does not display well on IE6. Problem is that 60% of my targeted user runs on this browser. I am beginning to

Dynamic (2 levels) Javascript/CSS Loading IE6

吃可爱长大的小学妹 提交于 2019-12-25 08:34:38
问题 i am trying to dynamically include js (and css) files into a webpage like this: index.html -> loader_a.js -> a_foo.js, a_bar.js, a_foo.css and so on. While this works without a problem in FF (using appendChild) i cant get it to run in IE6. I've tried various available solutions (adding to dom node, ajax call and eval and more from (http://ntt.cc/2008/02/10/4-ways-to-dynamically-load-external-javascriptwith-source.html) here and there and others like post #2013676) but it's not doing what its

ie6 weird h3 /div behavior - no right margin bug (?) in ff

☆樱花仙子☆ 提交于 2019-12-25 06:59:26
问题 Help, please. The code - just a styled pre and a styled div (using float and clear ) : <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Ie bug</title> <style type="text/css"> <!-- pre { background-color: #FFFFCC; border: 2px dashed #FF6666; padding-top: 7px; padding-bottom: 8px; padding-left: 10px; margin: 10px; float: left; padding-right: 10px; clear:

2 div are coming horizontally in same in all except IE6? how to solve?

痞子三分冷 提交于 2019-12-25 04:15:16
问题 2 divs are coming horizontally in same in all except IE6? but in IE 6 second div is falling under first div. both div has fixed width and float:left this is code of container div #home2colContainer {margin-top:40px;overflow:hidden;width:1000px;} this is for first div #home2colLeftColContainer {float:left;margin-left:20px;width:675px;} and this is for second div #home2colRightColContainer {float:left;margin-left:30px;margin-top:9px;width:268px;} 回答1: Try absolutely positioning the second one

2 div are coming horizontally in same in all except IE6? how to solve?

£可爱£侵袭症+ 提交于 2019-12-25 04:15:07
问题 2 divs are coming horizontally in same in all except IE6? but in IE 6 second div is falling under first div. both div has fixed width and float:left this is code of container div #home2colContainer {margin-top:40px;overflow:hidden;width:1000px;} this is for first div #home2colLeftColContainer {float:left;margin-left:20px;width:675px;} and this is for second div #home2colRightColContainer {float:left;margin-left:30px;margin-top:9px;width:268px;} 回答1: Try absolutely positioning the second one

IE javascript redirection

只谈情不闲聊 提交于 2019-12-25 02:31:56
问题 I have a javascript function which redirects user to a diff page. It goes like this... redirect : function(url) { if(!url) return false; alert(url); if (this.browserClass.isW3C) //IE 6.X comes here { window.location.href = url; } else if(this.browserClass.isIE4) { window.location.href = url; } else if (this.browserClass.isNN4) { window.location = url; } else { window.location = url; } return false; }, But the problem is that this does not work in IE (internet explorer 6.X). After a short

How to Set Height of a div same as the Screen Height

时光总嘲笑我的痴心妄想 提交于 2019-12-25 01:41:31
问题 I need a div height changable if the screen size changes. I also need that div is scrollable because the content may be Large. But only when it is larger than the screen zize. Also it should Work on IE6 Is there any Possibility for that? If yes, Please Give me the Complete css, html and javascript. 回答1: set width 100%; It's works body { width:100%; height:100%; } #wrapper { width:100%; background:#ccc; } 回答2: if the div is a direct child of body than just set height: 100% on both the div and

ie6 - gd and php image outputting

一笑奈何 提交于 2019-12-25 00:52:52
问题 i'm trying to show image with grayscale-filter. Here is my code: $images = glob('gallery/*small*'); shuffle($images); array_splice($images, 3); $imgHandles = array(); $imgBuffered = array(); for( $i = 0; $i < 3; $i++) { $imgHandles[$i] = imagecreatefromstring( file_get_contents($images[$i]) ); imagefilter( $imgHandles[$i], IMG_FILTER_GRAYSCALE ); ob_start(); imagepng( $imgHandles[$i] ); $imgBuffered[$i] = ob_get_contents(); ob_end_clean(); imagedestroy( $imgHandles[$i] ); } And outputting:

How to handle javascript on page with thousands of checkboxes in IE6

好久不见. 提交于 2019-12-25 00:38:09
问题 I am having problems with code written in ASP.NET with some javascript, doing a postback to the server for changes made to a grid of approximately 8,000 checkboxes. The this is, while I was testing it, everything seemed ok with approximately 1,000 checkboxes with IE6. But now, having imported the real data, I am stuck with the slowness of IE6 and the reality that the code I wrote is not going to cut it. I have to use IE6 to test it because unfortunately, the client demands the web app to be

Using a different font causes line-height spacing issues in IE6 and IE7

陌路散爱 提交于 2019-12-24 19:08:58
问题 I have a form with a couple of columns and two or three inputs in each. When I just use the default font there is no problem and everything lines up properly but when I use a different font it adds a little vertical space underneath the labels. the font I'm trying to use is TheMixRegularCaps - http://www.fontslog.com/themix-regularcaps-otf-32939.htm How can I fix this? thanks 回答1: The problem is most likely the font itself. Some fonts have more vertical spacing than others. You should use CSS