HTML 5 DOM Storage in IE6/7
Anyone knows a better way to storage data in IE6/7 using HTML DOM Storage? I found the ExDomStorage But it limits data to 64Kb. ...
Anyone knows a better way to storage data in IE6/7 using HTML DOM Storage? I found the ExDomStorage But it limits data to 64Kb. ...
I need a cross-platform way to insert OPTIONs into a SELECT with jQuery. I think I recall in the past that IE6 does nothing when this is called: <select id="myselect" size="1"> <option value=""></option> </select> <script type="text/javascript"> $('#myselect').append('<option value="test1">test1</option>'); $('#myselect').append('<optio...
Here is a useful page detailing the specification for the same origin policy in Mozilla. Same origin policy for Mozilla Does anyone know or have a link to information of how the same origin policy in IE6. Primarily I would like to know if websites are operating from differnt ports then would they be considered to be from the same orig...
I'm having a few issues with our old friend IE6. The site I'm working on is for a public sector client so it has to support IE6. The slider is fine in IE7+, Firefox, Safari and Chrome. I've tried everything that I can think of but I'm drawing a blank! Can you help? IE6 on a PC. Chrome on a Mac ...
I'm using DevExpress ASPxGridView edit form, using default edit form. However when I open the edit form in IE6 and click "update" to insert the record, it causes a JavaScript error that says "type" is null or not an object". However it works fine in IE7. I am puzzled and unsure of how to resolve this. Code is below. <dx:ASPxGridView ID=...
I have created an html page with a Tabber tab functionality. Each tab has its own table that loads when the tab is clicked and only loads once on the initial tab click to stop the tables loading more than once. Each tab table exists in its own .jsp html file and is loaded through javascript using the $("#tab1").load('tabqtable.jsp');...
I have a bunch of old machines running Windows 2000 Pro and IE 5.0 which I want to upgrade to IE 6 with Silverlight. I downloaded the IE6 and Silverlight installers from Microsoft's web sites and fortunately they both have command line options to allow them to run in "silent mode". I put the two commands in a DOS batch script and ran i...
I work on a web application hosted at over a hundred large sites that has as one of its requirements support for Internet Explorer 6 - not supporting IE6 is not an option as the organisations that use it are huge and that decision is out of my hands. Users have discovered that printing certain pages is not possible, and having simplifie...
inside the iframe the data goes over the scrollbar when I scroll.I want the scrollbars but the data shouldn't show over the scroll bar vertically and horizontally. can anyone give me a solution. ...
Hello. I have two web pages: one consists of four asp.net text boxes and one submit button (main page) and another page which loads data from xml. The problem is that when i open the second page and click "Back" button in browser to return to the main page 'submit' button ONLY REFRESHES the main page and nothing else happens. This behav...
The following piece of jQuery is used on a page which has a message at the top, and all the comments which reply to the message below it. The way the code works on IE8/Chrome/Firefox is it "collapses" all of the comments bellow the initial message, so just their subjects appear. Clicking their subjects then substitutes the initial messag...
Hello all, I am making use of JQuery's autcomplete plugin. It works perfectly but in IE6, there are design issues. I have a multi select tag underneath and when the autocomplete drops down the list of options its underneath the multi select tag! In all other browsers, this is fine but not in IE6. What is the problem? This is the styl...
Let's say I have this markup: <div class="foobar"> <div style="height:expression(this.parent.style.height + 'px')"></div> </div> My expression doesn't work, but you can probably tell what I'm trying to do by it: get the height of the parent element. Please, if you cannot answer the question do not bother replying. This is for a VE...
I'm developing a fairly large page with several external javascript files. In IE6, the page hangs for a few seconds just as it's finished loading. I'm not (directly) asking for help debugging this problem, I'm only asking for help finding a tool to help debug this problem. What I'm looking for is something similar to Chrome Developer To...
I need to fix a footer to the bottom of the viewport. IE 6 is the problem--and yes, it must work in IE 6. That much, is not my call. Using this: div#footer { width:1020px; position: absolute; top: expression(0+((e=document.documentElement.scrollTop)?e:document.body.scrollTop)+'px'); left: expression(50%+((e=document.documentElem...
This seems like I'm just missing some syntax or getting it wrong, but on an ie6 specific style-sheet this locks it to the top of the view-port and stays fixed despite scrolling: top: expression(0+((e=document.documentElement.scrollTop)?e:document.body.scrollTop)+'px'); But, this does not lock it to the bottom in the same manner: bot...
I'm building this site http://www.philgoulet.com/dev/michele/index.php and it looks good in firefox, chrome, IE8, but apparently it looks like death in IE6. Normally I expect everything to look a little different in IE6, but not this bad. I'm not even sure why it's getting so messed up. Anyway, I need to get the site to work in IE6, but ...
We are trying to estimate this: If you are a web developer, how many hours per week do you spend working on IE related issues and bugs, where other browsers dont find any problems at all. We're trying to find out if developers still waste a lot of time on it. I know it's difficult to estimate, but even % would help.. I spend ~3h each...
Hi, please could you advise? I need to put a div over a select element in IE6. The approach I've chosen is to use iframes in div (jquery bgiframe plugin). Everything is nice except one: this div has a vertical scrollbar, and just this scrollbar is under the select although iframe is under the whole div (including its scrollbar). How cou...
I am using the belated PNG fix for IE6: http://www.dillerdesign.com/experiment/DD_belatedPNG/ Like so: <!--[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" defer="defer"></script> <![endif]--> I hav...