internet-explorer-6

IE6 and IE7 Z-INDEX bug

◇◆丶佛笑我妖孽 提交于 2019-12-08 06:11:38
问题 After a few lost days, I have given up trying to solve this. So, here is the situation and I'll be really thankful if someone could tell me what I should do: I have a vertical menu, and the second level of the menu is absolute positioned. The inner <ul> is styled position: absolute; and has a set z-index . The problem is ie6 and ie7-specific, which does not recognize the z-index in an absolute positioned block. If the element was a relatively positioned, there are no problems but I need the

IE6 Absolute positioning

我怕爱的太早我们不能终老 提交于 2019-12-08 04:44:53
问题 There is structure. ad is positioned relative. And the all other divs in div.ad positioned absolute. top-left, bottom-left, top-right, bottom-right styles looking as it should. But "inside", "left", "right", "top", and "bottom" styles not working. left, right dont have specific heights and top, bottom dont have specific widths and inside dont have both bec div.ad's height and width expandable. Its working on IE 7,8,9 Opera 10.50+, Chrome and Firefox Modern browser screenshot http://i56

IE6 does not parse the loaded JavaScript file (Recaptcha hosted by Google)

十年热恋 提交于 2019-12-07 17:53:46
问题 This is a really strange issue, I am trying to use the Recaptcha on one of the website, and it works for all browsers tested except for IE6. I have made a reference to the google's js: http://www.google.com/recaptcha/api/challenge?k=the_key and it is loaded according to fiddler2 & the 'onreadystatechange' event (which have a readystate == 'loaded') The normal work flow should be the loaded JS been parsed, and another js been requested, then the image loaded from google. my problem is that the

jQuery / underscore.js templating - Compatible with IE 6+?

余生长醉 提交于 2019-12-07 14:44:10
问题 So, I just learned about these recently and am about to put them into a site. Now, the question I am posing is, does this at all throw any kid of errors in IE 6+? Yes, I know IE6, what can you do.. When I say errors, I mean IE errors / warnings. Appreciate all the help as usual, thanks in advance. -Wes 回答1: Firstly, yes: jQuery does work with IE6 -- it says as much on the jQuery Homepage (hover over the "Cross browser" link and you'll see a popup that says IE6+). (having said that, a lot of

ASP.Net: IE6 making invalid requests

与世无争的帅哥 提交于 2019-12-07 13:31:47
问题 I have a live site where every error is logged and e-mailed to me. I've been getting a lot of "Padding is invalid and cannot be removed." errors on requests to WebResource.axd. Looking closely, the request is erroneous. This is the request in question: /webresource.axd?d=mgqvdy8omlq71j1set2ida2&ampt=633700045603820000 And this is how it should look: /WebResource.axd?d=MgQvdy8OmLQ71j1SET2IdA2&t=633700045603820000 Notice the lack of capitalization and, more importantly, the lack of ; after &amp

Reading form action property in IE6, if form has a field named “action”

别来无恙 提交于 2019-12-07 13:01:03
问题 Given the form below: <form id="myForm" action="index.php"> <input type="hidden" name="action" value="list" /> <input type="submit" /> </form> How can I get the value for the action property of the form ( index.php ) using IE6? Hint: I have tried document.getElementById('myForm').action and document.getElementById('myForm').getAttribute('action') But neither of them work. They both return the input field ( document.getElementById('myForm').action.value == 'list' ). 回答1: There is a simple way,

How to detect if a user is running IE 6?

你说的曾经没有我的故事 提交于 2019-12-07 12:03:27
问题 I need to be able to tell if a page is being viewed in IE 6. How can I do this in javascript while ignoring version like 7, 8, or other browsers? 回答1: straight from the horse's mouth (and one googling away): function getInternetExplorerVersion() // Returns the version of Internet Explorer or a -1 // (indicating the use of another browser). { var rv = -1; // Return value assumes failure. if (navigator.appName == 'Microsoft Internet Explorer') { var ua = navigator.userAgent; var re = new RegExp

Opening a new window create a new session

此生再无相见时 提交于 2019-12-07 10:23:18
问题 We are upgrading a web-based software from Windows XP with Internet Explorer 6 to Windows 7 with Internet Explorer 9. Furthermore, a webbrowser object is used inside a WPF application. We now have a strange behavior, when opening a window with a url (with an instruction like window.open(url)), the ASP session is "lost" and the new window works with a new from scratch session. I solved this issue by avoiding useless windows opening and instead, I modify the location of the current window. But

IE6 using Multiple IEs doesn't let me edit textboxes

对着背影说爱祢 提交于 2019-12-07 04:49:42
问题 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. 回答1: Discovered in the comments on the tredosoft site that installing IE8 breaks textbox

Can this solution be IE7 and IE6 compatible?

烂漫一生 提交于 2019-12-07 03:48: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.