internet-explorer-6

absolute positioned element clipping if position outside its parent item IE7

落花浮王杯 提交于 2019-12-14 00:57:53
问题 Hi Im trying to position an element so its slightly positioned outside its parent item. In IE8 it works but in IE7 the positioned element gets clipped. Here's my code HTML: <div id="parent"> <div id="child">text</div> </div> The CSS #parent { height: 40px; width: 400px; position: relative; } #child { position: absolute; width: 100px; height: 60px; top: 0px; left: 0px; } In IE7 you will see that the last 20px of the child element gets clipped. How can I solve this? THX 回答1: Its just the famous

jquery change event trigger

三世轮回 提交于 2019-12-13 20:30:43
问题 I have a problem in need of help of JQuery. JQuery give my input to increase the use of case change. the code: #(".inp").bind("change",function (){ if(isNaN(this.value)){ this.value = 0; } } When I first time to enter characters, change case happened, input values changed to 0 But when I enter the same character a second time, change does not happen. 回答1: From jQuery documentation: The change event fires when a control loses the input focus and its value has been modified since gaining focus.

backbone.js router doesn't work on IE6

江枫思渺然 提交于 2019-12-13 16:21:37
问题 When I use the Router in Backbone.js, IE6 throw a Permission Denied on the following line: if (this.iframe && (frag != this.getFragment(this.iframe.location.hash))) the Backbone.js version is 0.5.3 , I also try some other version, but it is not work also. 回答1: The Backbone.js router does work in IE6, but it uses hash fragment routing (http://domain/#route) instead of HTML5 history push state routing (http://domain/route) 回答2: As far as I know backbone.js does not claim to support IE6 来源:

jQuery UI Autocomplete with scrollbar z-index help

女生的网名这么多〃 提交于 2019-12-13 16:01:45
问题 I have a textbox that I am attaching jQuery UI's Autocomplete functionality to and I am using CSS to give it a max height via the example here. My problem is that doing this causes the z-index problem that bgiframe solves to come back again, but in a different way. The initial autocomplete menu is above all the controls underneath it, but when I begin to scroll the autocomplete menu falls behind them. Any suggestions? EDIT: This is purely an IE6 bug. As you can see, after scrolling down the

Images in one file under IE6 WITHOUT php

99封情书 提交于 2019-12-13 15:17:08
问题 I need to create a page with all images and CSS in it, so it would be only one file. I know that there is something like MHT (IE web archive), BUT there is problem. It works only in IE and Opera, not in FF. And i need my page to be working in all IEs (6+), Opera and FF. I know there is a way to encode my images in base64 and I also know, that IE 6 and 7 does not support data URLs. I've seen Dean Edward's trick for IE 6 and 7 but it works only with PHP support. And I can't use PHP, so this isn

document.getElementById('grand_total_display').innerHTML = “Total is : $”+variable; is displaying error in IE6 and IE7

送分小仙女□ 提交于 2019-12-13 08:31:27
问题 document.getElementById('grand_total_display).innerHTML = "Total is : $"+variable; is displaying error in IE6 and IE7 I have an <li> with id as grand_total_display with some text displayed in it. <li class="bannerprice" id="grand_total_display">TOTAL PRICE : $0</li> I am executing a jjavascript function to insert some other value into it.. but I am displayed with the error as given below: Please help me to rectify the issue 回答1: Apparently there's no element in the DOM with 'totaldisplay' as

Is there any PNG-fix for IE 6 and without modifying current HTML, CSS and image name?

被刻印的时光 ゝ 提交于 2019-12-13 08:06:27
问题 Is there any PNG-fix for IE 6 and without modifying current HTML, CSS and image name? any javascript way. I can add any thing in <head>........</head> but can't modify anythings inside <body>.....</body> . in one shot i want to make transparent all png transparent. 回答1: As I just learned, this script will make IE behave like a standards compliant browser, including PNG fixes. 回答2: OK here's a question: if you can't modify the HTML, CSS or image at all, what the heck can you modify? The raw

Web page is cut off in IE6

纵然是瞬间 提交于 2019-12-13 07:10:23
问题 I have a site at http://www.dellsvet.com/ which is being affected by a bug in IE6. The page will only show what will fit in the viewport, and you're unable to scroll down in IE6. I thought that I was dealing with the unscrollable content bug detailed here: http://www.positioniseverything.net/explorer/unscrollable.html -- but it's not a match as far as I can find. I've been tinkering with this for a while with no result. Does anyone have any insight on this bug? I've got a feeling this is

IE6-7 Javascript

元气小坏坏 提交于 2019-12-13 06:40:48
问题 I am using the "mimic igoogle tutorial with cookies" by James Padolsey http://james.padolsey.com/tag/cookies/ I have encountered a problem with the way that IE6 & 7 interprets the javascript. I have found the problem but I have no way of working around it. The following code is long but the problem is only in one small section /* * Script from NETTUTS.com [by James Padolsey] V.2 (ENHANCED, WITH COOKIES!!!) * @requires jQuery($), jQuery UI & sortable/draggable UI modules & jQuery COOKIE plugin

What ftp library to use in VB6

冷暖自知 提交于 2019-12-13 06:19:36
问题 We are using the builtin ftp in VB6. (Drag and drop control) The ftp dll that follows VB6 is tied to IE. And after upgrading from IE6 to IE7 the DLL changes and makes it impossible to connect to a password protected ftp. What ftp libraries/dll's are available to use from VB6? Preferably open sourced. 回答1: Any COM library will do the trick, for example a .NET dll compiled with the 'Register for COM Interop' attribute. This pure .NET piece of code might do the work for you. 来源: https:/