I have some Javascript code containing calls to jQuery.get(). I'm passing a callback to receive the response from the server.
In Firefox 3.5 (Windows and Linux) and IE8, the callback is called reliably. In IE6, it's never called.
I've tried jQuery 1.3 and 1.4 -- same result.
Is there some setting in IE6 that could cause such a probl...
Hello all,
I have a very simple file upload PHP script. I am testing with a 175Mb file at the moment. This works fine on all browsers (firefox, chomre etc) including IE7 and above but it does not work for IE6.
When I upload the file, the script should export an access database (that was just uploaded) and all its tables to text files t...
Possible Duplicate:
Should we support IE6 anymore?
ripie6.com
I would like to know which browsers we can avoid. Many sites have stopped support to IE6. So, as developers we can also start avoiding some sites? If yes, what are all? (which versions of what broswers)
Even though I have asked the question already here: http://st...
As you know in legacy (and unpatched) Internet Explorer, you have to click on active content (like Flash) to start it. I know Microsoft added the click-to-activate "feature" then removed it a couple of years after but I'm still stuck with customers with this "feature" still there.
I would like to use SWFObject 2.2 (latest) to embed Flas...
Hi,
I have an array of two urls that I read and feed into an iframe src value using:
document.getElementById("iframe").src = unescape(dashboard.url);
Immediately after this line, I issue an alert(document.getElementById("iframe").src), which all works fine.
My problem is, is that the first URL in the array seems to load correctly an...
So I was trying to do a top level navigation and it works pretty well across the regular browsers (it has kinks but those I can iron out).
But for whatever reason, in IE6/7 the links are placed over the dropdowns when the browser viewport shrinks. It functions in what I think is most of the other browsers, and I do not for the life of ...
I am trying to use Google Custom Search (Business Edition) on my site. I am not using the iFrame but I am using the Custom Element. I selected a theme and everything looks fine in all the browsers except IE6. All the search results are taking the Promotion CSS.
Update - Posted Code
<div id="cse-search-form" style="width: 100%;">Loading...
Hello all,
I make use of class selectors in JQuery and this works fine but in IE6 this fails as it does not apply the width I would like.
$('.ui-state-default .ui-jqgrid-hdiv').css('width', width);
If I try it one class it works?? But I need to apply that width to a div that has both those classes.
Thanks all for any help.
Upda...
Hi all,
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 fro...
Hello all,
I have a simple textarea which works in all browsers i.e. I can click inside it and type.
But I can't do this with IE6! I am however, able to press the tab key until I get to the textarea and then I can type in it. But I cannot click it.
What a strange quirk? Anyone know what the hell is going on?!
The source of my form ca...
Does anyone know why IE6 and IE7 add a white border between a button border and the background?
Here is my CSS and HTML:
#reportButton{
background:#fefcda url(buttonback.png) repeat-x bottom left;
border-top:2px solid #fffff8;
border-right:2px solid #e3b40c;
border-bottom:2px solid #e3b40c;
border-left:2px solid #ff...
I've tried to be sneaky and set a var in an IE6 conditional comment; then use an if (is IE6) { do nothing } else { do these effects }; to no avail.
It was ignoring my calls to show/hide. I saw a few things where IE6 sucks with show/hide, so I tried adding hide/show classes to no avail as well.
Any help would be greatly appreciated and ...
I'm working on a tricky design with several layers, and it requires me to layer a div between two other overlapping divs in a separate container. Here's my simplified example which works in Firefox, but not IE6 (which is of course the client's browser of choice): http://dawnup.com/sandwich
Source:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHT...
I'm using Dragzoom with Google Map API to allow user to zoom in and out.
I'm having a problem with the position of the DragZoom overlay and the drag box when viewing in IE6.
Here is the site.
http://6243068.test.prositehosting.co.uk/projectspot/test1.html
When you draw a box, it is offset to the left by about half the map
width. If ...
My IE is IE 6. It's pretty old, but I have to use it.
I just found a strange problem, it doesn't support "document.getElementById()"!
See my test file: test.html
<a id="aaa">xxx</a>
<script>
aaa = document.getElementById("aaa");
alert(aaa);
</script>
When I open this file by IE, there shows an ERROR dialog:
line: 3
char: 1
error: o...
So, I've got a problem using style="overflow:auto; on IE6 / 7 browsers. It just doesn't work there.
I've tried some jquery, but it was fail plaguins ... I can't get them work properly.
So what will you recommend to me to make overflow working for IE6,7 ?
thank you.
...
I have canvas facebook application that works great in all other browsers except IE6.
The problem is in the Menu Links. The links are "index.php" , "index2.php" and etc.
But in IE 6 the browser is Redirecting to the host Canvas Callback URL.
Is there any fix for this problem.
Thanks....
...
Possible Duplicate:
How To Distract Clients From Using IE6
Hi all,
As webdevelopers and probably most of the user of SO will know, Internet Explorer 6 is one of the most nasty browsers to work with if you're developing a website. We developed a webshop for a client which works fine in every major browser, including IE 7 and 8...
I am using the following PNG fix for IE6:
http://www.dillerdesign.com/experiment/DD_belatedPNG/
It is referenced thus in the head of my document:
<!--[if lt IE 7]>
<script type="text/JavaScript" src="../../Scripts/DD_belatedPNG_0.0.8a-min.js" defer="defer"></script>
<script type="text/JavaScript" src="../../Scripts/DD_PNG_listing.js" ...
Sample code is below. If you look at it, you will see gray drop down boxes. These boxes are present in all browsers, but don't show in IE6 / IE7. Is there anyway to get this working in those browsers, without removing styles critical to the layout (for instance, I think removing a overflow: hidden off of something gets it to work but bre...