internet-explorer-6

IE6 using Multiple IEs doesn't let me edit textboxes

南笙酒味 提交于 2019-12-05 10:43:25
Not sure if this counts as programming related, it's a tool that I use. I've got Multiple IE installed so I can test the sites I make on IE6 for those people who require it, but recently IE6 is not letting me enter into any textboxes, they're acting as if they're all disabled. Has anyone else encountered this probelem and/or know of a solution. I've already tried uninstalling & re-installing multiple ie. Discovered in the comments on the tredosoft site that installing IE8 breaks textbox & textareas in the Multiple IE browser. I uninstalled IE8 & it's fixed the problem. I have used Multipe IE

Can this solution be IE7 and IE6 compatible?

百般思念 提交于 2019-12-05 06:21:00
Is there any way to make this solution IE6 and IE7 compatible? http://jsfiddle.net/kirkstrobeck/sDh7s/1/ Pulled from this question I think I've found a real solution. I've made it into a new function: jQuery.style(name, value, priority); You can use it to get values with .style('name') just like .css('name') , get the CSSStyleDeclaration with .style() , and also set values - with the ability to specify the priority as 'important'. See https://developer.mozilla.org/en/DOM/CSSStyleDeclaration . Demo var div = $('someDiv'); console.log(div.style('color')); div.style('color', 'red'); console.log

Cufon text z-index (IE6 and IE7 stylish select box bug)

守給你的承諾、 提交于 2019-12-05 06:06:41
I'm replacing some text with cufon on my page and I'm using jquery stylish select box plugin ( http://www.scottdarby.com/plugins/stylish-select/0.4/ ) to style select boxes. The problem is that, in IE6 and IE7, select box goes under the cufonized text. (the select box is actually an <ul> ). Anyone had this issue before? i encountered the same problem with a drop down menu, through which the Cufon h1 stays visible in IE 6 & 7. Giving the element in which the ul is placed a z-index solves the problem! Cheers I had same problem, but becouse cufon was relative posioned. Z-index + positon relative

IE6 forms: focus disabled on input fields? (Multiple IEs after IE8)

这一生的挚爱 提交于 2019-12-05 02:55:49
问题 I recently installed IE8, and found quirks using the old copies of IE I have for testing sites with. After reinstalling the "Multiple IEs" I use, I find that now I cannot focus on input fields, either with the keyboard or mouse. I've found that other people have experienced this behavior, but not a solution for it. Has anyone here got any advice? EDIT: By 'Multiple IE versions' I mean this package and, lately, this. But I have the same problem with both. I can read the 'not supported anymore'

IE6 and Caching

若如初见. 提交于 2019-12-05 02:23:15
问题 It seems that IE6 ignores any form of cache invalidation sent via http headers, I've tried setting Pragma to No Cache and setting Cache Expiration to the current time, yet in IE6, hitting back will always pull up a cached version of a page I am working on. Is there a specific HTTP Header that IE6 does listen too? 回答1: Cache-Control: private, max-age=0 should fix it. From classic ASP this is done with Response.Expires=-1 . Keep in mind when testing that just because your server is serving

how can i test my website with ie6

馋奶兔 提交于 2019-12-04 23:12:54
问题 i worked on a website in the latest firefox and then presented it on a machine that just had ie6 (and it looked horrible). is there anyway i can test what it will look like in IE6 without having to actually download. I see that ie8 has a compatibility mode (to show what it would look like in ie7), is there a similar thing for ie 6? 回答1: Get Microsoft Virtual PC (it's free). You can download images with IE6, IE7, and IE8 for all your wtf-microsoft! debugging needs. http://www.microsoft.com

Save me from IE6

一世执手 提交于 2019-12-04 16:19:59
问题 I'm getting ready to start work on a new web project for a fairly large corporation. For all their users, something like 17,000 people, they are all stuck with IE6. They plan to have everyone transitioned to IE7 by the end of the year, however the IT department is starting to push this promise back. What I've been asked to do is to give the project sponsor some more ammo push back on this. However, my charismatic politician button seems to be broken. I've only been unable to come up with

IE6: Background-Image Load Event

旧时模样 提交于 2019-12-04 16:03:26
问题 I am displaying a bunch of thumbnail images and the latency can be very high (over a VPN) so I send all the thumbnails in a single file (like a sprite) and set the CSS background-image and background-position properties of a div to show the thumbnails. The problem I'm having is with IE6 and figuring out when the image has loaded... I'm using the BackgroundImageCache hack: document.execCommand("BackgroundImageCache",false,true); To check when the image is loaded I use this code: $('<img>')

PHP get_browser: how to identify ie7 versus ie6?

北城余情 提交于 2019-12-04 15:14:08
Is there any way to differentiate IE7 versus IE6 using PHP's get_browser() function? You can do so as such: $browser = get_browser(); if($browser->browser == 'IE' && $browser->majorver == 6) { echo "IE6"; } elseif($browser->browser == 'IE' && $browser->majorver == 7) { echo "IE7"; } A quick look to the official get_browser() documentation would of answered your question. Always read the documentation before. I read that get_browser() is a relatively slow function, so I was looking for something speedier. This code checks for MSIE 7.0, outputting "Otay!" if true. It's basically the same answer

Huge Web App With Memory Leak in IE 6

廉价感情. 提交于 2019-12-04 14:35:36
I have a huge web app that is having issues with memory leak in IE 6. Fixing a memory leak in a 5 line code sample that demonstrates the problem is easy. But if I have a very huge application, where should a start from? Check out Drip . That usually takes the guesswork out of IE memory leaks. If for some reason Drip doesn't find it, take a close look at any JavaScript code that works with events. That is almost always the source of any significant memory leak in a browser. Destroying a DOM element with handlers attached to it, without removing those handlers first, will prevent the memory