internet-explorer-6

Does IE6 support any HTML5 elements?

狂风中的少年 提交于 2019-12-10 04:55:30
问题 Does IE6 support any HTML5 elements? <!DOCTYPE HTML> <header> <section> <header> <nav> <canvas> <video> 回答1: It barely supports HTML4.... ha :) No it doesn't without some fancy Javascript HTML5 emulating script type-of-thing. Edit Such as this one. 回答2: It depends on what you mean by "HTML5 elements." In that most tags commonly used on the Web are included as part of HTML5, yes, it supports the vast majority of HTML5. If you mean new elements introduced in HTML5 that had never been used

PHP get_browser: how to identify ie7 versus ie6?

好久不见. 提交于 2019-12-09 23:03:08
问题 Is there any way to differentiate IE7 versus IE6 using PHP's get_browser() function? 回答1: 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. 回答2: I read that get_browser() is a relatively slow function, so I was looking

IE6&7 causes of “This page contains both secure and nonsecure items”

我是研究僧i 提交于 2019-12-09 16:08:33
问题 I have an HTTPS site that in IE6 & 7 displays (in error) a dialog that reads: This page contains both secure and nonsecure items Do you want to display the nonsecure items? This doesn't happen in any proper browsers, but the site is corporate and lots of customers are still on Windows 2000 and IE6. I am familiar with (and have eliminated) the following possible causes of this message: One or more of the resources loaded with the page have http:// instead of https:// - this is the only

IE6 Issue - border-color:transparent not working

女生的网名这么多〃 提交于 2019-12-09 07:39:27
style="border:solid 1px transparent" is not working in IE6 instead it shows a black border. How to solve this issue? IE6 does not support a border that is transparent . With a quick search, I found this workaround: http://acidmartin.wordpress.com/2008/08/24/emulating-border-color-transparent-in-internet-explorer-6/ To put it to work with IE6, we will create another rule, that is visible only in version 6 (the *html hack) with just two lines of code: *html .testDiv { border-color: pink; filter: chroma(color=pink); } … And voila! The ugly black border around .testDiv magically disappears. The

IE6 postback in asp.net

 ̄綄美尐妖づ 提交于 2019-12-08 16:42:26
I have a page that contains a user control that is just a personalized dropdown list . I assign to each item the attribute onClick=__doPostBack('actrl',0) . when I click the page postback fine and I got the expected results. However in IE6 my page doesn't change to the new values loaded from the server. The weird thing is that when I shift + click on the link The page reload fine with all changes. I tried to disable caching on the page but no luck. using all this code Response.CacheControl = "no-cache" Response.AddHeader("Pragma", "no-cache") Response.Expires = -1 Response.Cache.SetExpires

disabling text selection is not working in IE using jquery

◇◆丶佛笑我妖孽 提交于 2019-12-08 11:06:32
问题 I tried disabling text selection using JQuery. It's working fine in Firefox but not in IE. I have a text input field with an id, say 123. For this element the text filled in should not be allowed for selection. Can anyone provide me with sample code? I am using IE 6. 回答1: Try this: I don't have IE6, but this works for IE7 at least $("#123").bind( "selectstart", function(e){ e.preventDefault(); return false; }); 回答2: Take a look one of IE's proprietary, cancellable events, onselectstart. $("

jQuery UI modal dialog sliding behind dropdownlists in IE6

被刻印的时光 ゝ 提交于 2019-12-08 10:42:20
问题 I've just put the jQuery UI dialog into a web page. It's the first time I've used it. I thought I had set the bgiframe property correctly but when I check it in IE6 it's still slipping behind dropdownlists. Here's my javascript code. There's nothing flash on the page. A simple div with the text in and an anchor around some text for the 'jClick'. Any ideas why this is happening in IE6? $(document).ready(function(){ $("#dialog").dialog({ bgiframe: true, autoOpen: false, overlay: {

postMessage() alternative for ie6/7 between iFrames and/or pop ups

时光毁灭记忆、已成空白 提交于 2019-12-08 08:10:04
问题 I am attempting to create a login button for web application which either loads an iFrame or a pop up window. Similar to that of Facebook login button. Im currently using the postMessage() method which works a treat. However I know that it wont work in IE6/IE7 which I need to support. Is their any alternatives I could possibly use? or am I hoping for to much from the "awesome browser" that is IE6? 回答1: Back in the day, I used to write IE6-based websites that opened popups and communicated

Gradient for IE6 not working

自作多情 提交于 2019-12-08 07:45:03
问题 I have several divs on a webpage that use the IE css filter to create a gradient effect for the background. The page is viewed primarily in IE6 (I have no other choice unfortunatly) and displays fine on my development machine. I have also tried viewing the page using IETester and the page also displays fine in IE 5.5 to IE 8. However, when viewing the page on the "live" machine, the gradients don't show up at all. The browser on the "live" machine is IE 6 with sp3. I have checked the div's

window.location problem

北战南征 提交于 2019-12-08 06:36:11
问题 I am facing on strange problem in ie6. When i am using window.location to redirect page through javascript it works fine in all browser except ie6. It works in ie 6 if i place just like below: <a href="javascript:void(0);" onclick="javascript:window.location('http://www.demo.com');">demo</a> but its not working for below code. <a href="javascript:void(0);" onclick="javascript:redirect();>demo</a> function redirect() { window.location('http://www.demo.com');" } can you please figure out that