active questions tagged ie6 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T17:30:28Zhttp://stackoverflow.com/feeds/tag/ie6http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1939985/unable-to-load-image-using-javascript-in-ie-60unable to load image using Javascript in IE 6Punit2009-12-21T13:00:23Z2009-12-22T11:07:57Z
<p>Hi, I am trying to set source for Img tag using Javascript at button click. The problem which i m facing is that the I cannot see the Image in IE 6 but it works in FireFox. I browsed and tried few solutions like load the image in page load(Document load) itself or set a timer, but nothing works consistently. This problem also not consistent so unable to find the exact solution. the code goes here-</p>
<pre><code><li> <a id="lnk1" runat="server">
<img class="each_idea_icon" alt="" runat="server" id="imgAs" idea="images" />
</a>
</li>
//on button client click
var imgAs = $('#<%=imgAs.ClientID %>');
imgAs.attr("src", "../../Common/Images/EN/ABC.png");
</code></pre>
<p>Can somebody tell me wat could be the issue. It works perfectly in IE. I have removed ">" or "<" so code can be visible.</p>
<p>by default in server side i set the image src.</p>
http://stackoverflow.com/questions/1943926/ie-6-performance-vs-clean-unobtrusive-javascript2IE 6 performance vs. clean, unobtrusive Javascriptjonathanconway2009-12-22T03:01:11Z2009-12-22T07:06:30Z
<p>Normally I love to keep my HTML code clean, semantic and free from either Javascript or CSS. I include my .JS and .CSS files at the top, and layer functionality on top of the DOM elements.</p>
<p>The positives of this are:</p>
<ul>
<li>Architectural separation of concerns</li>
<li>Graceful degradation where Javascript or CSS isn't supported</li>
<li>Search-engine friendliness</li>
</ul>
<p>There is one major negative:</p>
<ul>
<li>Performance problems in IE 6</li>
</ul>
<p>Because all the events are attached to the elements through Javascript code, which accesses the DOM, performance in IE suffers.</p>
<p>This is especially so when using jQuery (which happens to be my favorite Javascript framework).</p>
<p>So it seems like I have two choices: either keep the code nice and neat, and have IE 6 users (around 20% of the user-base) complain, or "de-normalize" the code to improve IE 6 performance.</p>
<p>Is there a "middle way" in this situation? Or am I doomed?</p>
<p><hr></p>
<p>Note: I'm not saying that my performance problems are caused by having Javascript in a separate file. </p>
<p>I can achieve wonderful performance in IE while keeping it in a separate file.</p>
<p>The problem is, I still have to put the actual event handlers into 'onclick' attributes in the HTML. For example:</p>
<pre><code><span onclick="doSomething()">More...</span>
</code></pre>
<p>It would be much nicer if I could just write:</p>
<pre><code><span id="more-button">More...</span>
</code></pre>
<p>And then assign it separately, in Javascript, with the following:</p>
<pre><code>$("#more-button").click(doSomething);
</code></pre>
<p>Unfortunately, it seems this is bad for IE6 performance.</p>
http://stackoverflow.com/questions/1939332/window-location-problem1window.location problemavinash2009-12-21T10:26:02Z2009-12-21T10:49:08Z
<p>Hi,</p>
<p>I am facing on strange problem in ie6.</p>
<p>When i am using window.location to redirect page through javascript it works fine in all browser except ie6.</p>
<p>It works in ie 6 if i place just like below:</p>
<pre><code><a href="javascript:void(0);" onclick="javascript:window.location('http://www.demo.com');">demo</a>
</code></pre>
<p>but its not working for below code.</p>
<pre><code><a href="javascript:void(0);" onclick="javascript:redirect();>demo</a>
function redirect()
{
window.location('http://www.demo.com');"
}
</code></pre>
<p>can you please figure out that whats problem here.</p>
<p>Thanks.</p>
<p>Avinash</p>
http://stackoverflow.com/questions/1929535/ie-6-sliding-problems0ie 6 sliding problemsMitch2009-12-18T17:05:46Z2009-12-21T09:36:00Z
<p>I have had this script written for me, for a sliding navigation (from right to left) with JQuery.</p>
<p>Works well in mac FF, safari, opera, PC ie 7 & 8, but is not working at all in ie6.</p>
<p>If anyone could shed any light as to why ie 6 isn't working it would be much appreciated.</p>
<p>It can be seen working here <a href="http://www.mitchellwood.co.uk/test/slide/navworking-alone.html" rel="nofollow">http://www.mitchellwood.co.uk/test/slide/navworking-alone.html</a></p>
http://stackoverflow.com/questions/1938078/does-anyone-still-bother-with-ie6-hacks2Does anyone still bother with IE6 hacks?bcowdery2009-12-21T03:52:24Z2009-12-21T05:26:24Z
<p>I'm working on a web development project usng PNG transparency, CSS3 and all the other goodies you would come to expect in a "new" web design. IE8 and Firefox look great, IE7 is passable and IE6 looks like the dog coughed it up.</p>
<p>With Windows 7 out in the wild (If you have to dual boot... do it in style :P) and Internet Explorer 6 down to a pitiful 11% market share, has anyone made the decision to ignore it?</p>
<p>Granted, I've still made the effort to make IE6 usable - but how far should I take it (how far have you)? Is anyone else working on a project where they've given the finger to this ancient design massacring nightmare?</p>
<p>browser stats: <a href="http://www.w3schools.com/browsers/browsers%5Fstats.asp" rel="nofollow">http://www.w3schools.com/browsers/browsers%5Fstats.asp</a></p>
http://stackoverflow.com/questions/1646565/ie6-problem-with-dynamically-adjusting-the-height-of-a-div0IE6 problem with dynamically adjusting the height of a divmattstuehler2009-10-29T21:09:40Z2009-12-19T11:09:59Z
<p>All,</p>
<p>Here's what I'm trying to accomplish.</p>
<p>I have a Flash SWF that's embedded in a DIV. Depending on the user's interactions with that SWF, I'd like to dynamically adjust the height of the SWF.</p>
<p>The SWF itself is 1200 pixels tall. By default, the DIV is 690 pixels tall, so the lower part of the SWF is clipped (which is the behavior I want). Then, the DIV will shrink or grow, revealing or clipping more of the SWF.</p>
<p>Here's what my HTML looks like:</p>
<pre><code><body>
<div id="flash_wrapper">
<div id="flash_content">
This div will be replaced by an object via SWFObject
</div>
</div>
</body>
</code></pre>
<p>Here's my CSS:</p>
<pre><code>body, html {
margin: 0;
padding: 0;
background:#ffffff;
}
#flash_wrapper {
width:1000px;
height:690px;
margin:0;
}
#flash_content {
display: block;
width: 100%;
height: 100%;
}
</code></pre>
<p>Last, I have a JavaScript function that looks like this:</p>
<pre><code>function updateFlashDivHeight(h) {
document.getElementById("flash_wrapper").style.height = h;
}
</code></pre>
<p>The SWF calls that JavaScript function and passes it the height parameter like "900px" and voilá! - the DIV resizes perfectly. So far, this works great in all the browsers I've tested (IE8, Firefox, Chrome, Safari), EXCEPT IE6.</p>
<p>I'm a total novice when it comes to this (CSS especially), so I'm probably making a very simple mistake(s).</p>
<p>Many thanks in advance! </p>
http://stackoverflow.com/questions/1929946/ie6-jquery-change-event-assignment-to-controls1IE6: jQuery change event assignment to controlsRailRhoad2009-12-18T18:33:34Z2009-12-18T22:42:10Z
<p>So I have my nifty function that detects changes for me in a form:</p>
<pre><code>function EnableChangeDetection(eForm) {
// One of the nice benefits of this change detection is that we don't have
// to keep an additional array of previous values to compare. Also we
// don't have to worry about applying global unformatting for comparison
// and formatting back
// For each input control
$("#" + eForm + " :input")
// Add a change event that will trigger if the form has been changed
.one("change", function() {
$.jGrowl("Change detected...");
// Flag the form with an IsDirty class
$("#" + eForm)
.attr("class", "IsDirty")
// Now remove the event handler from all the elements
// since you don't need it any more.
$("#" + eForm + " :input")
.unbind("change");
});
}
</code></pre>
<p>The problem is that this change functions fires inconsistently for non textbox inputs (checkboxs and radio buttons) in IE. Works fine everywhere else of course...</p>
http://stackoverflow.com/questions/1928330/how-to-make-jquery-manipulation-and-box-check-uncheck-work-on-ie61How to make jquery manipulation and box check/uncheck work on IE6?Fabien2009-12-18T13:54:34Z2009-12-18T15:40:42Z
<p>On the following page (see code at end) when I click on the checkbox "A", on most browsers, it goes under the horizontal rule, unchecked.
On IE6, it goes under the horizontal rule, but keeps checked.
I would like to have the same behaviour in IE6 as in the other browsers.
I tried to add </p>
<pre><code>$(this).attr({"checked":"unchecked"});
</code></pre>
<p>but it is not better.
Any solution?</p>
<p>Here is the code of the page:</p>
<pre><code><html>
<head>
<title>test check</title>
<script src="shoppinglist_fichiers/jquery-1.js"></script>
<script type="text/javascript">
var toggleItem = function(o, toUnbind, toBind){
var selector = $(o);
selector.unbind("click", toUnbind);
selector.bind("click", toBind);
};
var checkItem = function(){
toggleItem(this, checkItem, uncheckItem);
//$(this).attr({"checked":"checked"});
$("#checked").prepend($(this).parent());
};
var uncheckItem = function(){
toggleItem(this, uncheckItem, checkItem);
//$(this).attr({"checked":"unchecked"});
$("#unchecked").append($(this).parent());
};
$(document).ready(function(){
$("#checked input").bind("click", uncheckItem);
$("#unchecked input").bind("click", checkItem);
});
</script>
</head>
<body>
<form id="listForm" action="list" method="post">
<span id="checked">
<span id="A">
<input autocomplete="off" value="A" name="list" checked="checked" type="checkbox">A<br>
</span>
</span>
<hr/>
<span id="unchecked">
</span>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1924607/what-to-do-if-my-users-have-ie62what to do if my users have ie6oo2009-12-17T21:07:50Z2009-12-18T02:26:46Z
<p>i have built a beautiful website that works very fast in all of the latest browsers but many of the users are forced to use ie6. If i can't get around this problem. Is there anything to do to optimize some of the inefficiencies of ie6 when building my site to lessen the pain.? its an asp.net mvc site with heavy use of jquery.</p>
http://stackoverflow.com/questions/1874904/ie-select-visible-although-its-parent-is-hidden0IE select visible although its parent is hiddenerikkallen2009-12-09T16:05:21Z2009-12-17T12:32:13Z
<p>I have a dynamic HTML document, and in a particular point of time it has a markup similar to this (but, of course, a lot more complex):</p>
<pre><code><div style="display: none">
<select><option>some text</option></select>
</div>
<div>
Some text
</div>
</code></pre>
<p>and my problem is that in IE 6, the select is still visible even though its parent is set as display: none. Has anyone else encountered this issue? I think I recall seeing this issue with checkboxes as well a long time ago. Other browsers work (of course), including IE8.</p>
<p>Of course, if you try just looking at this snippet in IE6, there will be no problem. It's a bug that is just triggered by doing things in the right order.</p>
http://stackoverflow.com/questions/1904744/problem-with-iframe-and-ie6-and-ie7-causing-extra-bottom-padding0Problem with iframe and IE6 and IE7 causing extra bottom paddingschone2009-12-15T01:43:27Z2009-12-17T12:15:36Z
<p>Hi all,</p>
<p>I'm trying to insert a Google Maps iframe into my website. The iframe has a padding of 4px and a border of 1px already applied to it but for some reason in IE6 and IE7 there is an extra 3px padding added to the bottom of the iframe.</p>
<p>You can see my test site here:</p>
<p><a href="http://www.prashantraju.com/test/" rel="nofollow">http://www.prashantraju.com/test/</a></p>
<p>Is there a reason why this is occurring and if so is there a fix to this?</p>
http://stackoverflow.com/questions/1898731/how-to-create-a-template-that-will-show-only-in-ie6-using-javascript1How to create a template that will show only in IE6 using javascript?Evilalan2009-12-14T03:19:49Z2009-12-17T12:06:39Z
<p>Well the question is self explanatory! but the thing is I have no experience with javascript at all, but it seems to me that it's simple to do just that!</p>
<p>oh and the changes will be only into the css side nothilg will change into the html, by the way this is a CMS template (joomla) so the index is dot-php wich should make it easy... I think!</p>
<p>the idea is to show a diferent set of images for ie6 (none actually), and I'll ask people to update to a new browser using another JS that I already have! and showing a picture of how the template looks like on FF and new versions of IE (7,8)</p>
<p>oh, I intent to learn PHP and javascript but first I have to master CSS, it would be easy without IE6, but in this particular case the template depends on png so, that is not way I'll be able to make this work even with the IE7 project and all!</p>
http://stackoverflow.com/questions/1916569/how-powerful-can-graphing-be-in-ie61How powerful can graphing be in IE6?Abiel2009-12-16T18:13:01Z2009-12-17T10:35:38Z
<p>I'm interested in developing a web-based application with rich time series charting functionality, where the charts can be constructed and manipulated on the client side. I would like the chart surface to be highly interactive, with the ability to pan and zoom with the mouse, click on lines, axes, etc. Importantly, I would prefer not to use Flash, AND I need to support Internet Explorer 6. My question is, is there anything out there that is going to allow me to do this, or must I use Flash? I have seen good charts that use the HTML5 canvas element, but I am not sure to what extent these would be supported in IE6 using excanvas.js, and if they are supported, what type of performance I can expect. I have not actually found a working example that ran in IE6.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1907626/why-does-this-java-applet-crash-and-close-ie60Why does this Java applet crash and close IE6?Abs2009-12-15T13:54:04Z2009-12-17T09:22:13Z
<p>I am using the following Java Applet to get the full file path of a file that is to be uploaded: <a href="http://svn.littleshoot.org/svn/littleshoot/trunk/client/applet/src/main/java/LittleShootApplet.java" rel="nofollow"><strong>SVN LittleShoot</strong></a>.</p>
<p>The thing is, the applet is initialized and it seems to be running in IE6 - but when I call one of the functions from JavaScript to the applet to open the file dialog box the browser crashes and closes itself just the dialog because shows up.</p>
<p>Why is the case? How can I debug this, I don't have any log files to look at? What may be the cause - I am willing to take wild guesses here as I am desperate!</p>
<p>HTML Usage (removed JS):</p>
<pre><code><OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" id="LittleShootApplet" name="LittleShootApplet" width="0" height="0">
<PARAM name="code" value="LittleShootApplet" />
<PARAM name="scriptable" value="true" />
<PARAM name="mayscript" value="true" />
<PARAM name="style" value="xdisplay: none; width:0; height:0; padding:0; margin:0;" />
</OBJECT>
</code></pre>
<h2>Update</h2>
<p>I get this error now: "Object doesn't support this property or method." I think its talking about this line.</p>
<pre><code><input type="button" value="Browse.." onclick="document.LittleShootApplet.openDialog('onFileDialogFile', 'onFileDialogCancel');">
</code></pre>
<p>Using just the HTML version, I get a JS error!</p>
http://stackoverflow.com/questions/1919692/how-to-style-first-paragraph-p-of-the-content-differently-without-using-css-cla1How to style first paragraph <p> of the content differently without using css class , ID or javascript, with IE6 compatibility ? Jitendra2009-12-17T05:42:48Z2009-12-17T07:00:43Z
<p>How to style first paragraph <code><p></code> of the content style differently without using inline css, css class , ID or javascript. ? with IE 6 compatibility too.</p>
http://stackoverflow.com/questions/1914654/jquery-png-fix-plugin-doesnt-work-so-well0JQuery PNG Fix Plugin - Doesn't work so well?Abs2009-12-16T13:28:04Z2009-12-16T14:54:10Z
<p>Hello all,</p>
<p>I have just switched over from the old png transparency fix using a htc file and I have started using a JQuery plugin called <a href="http://jquery.andreaseberhard.de/pngFix/" rel="nofollow">JQueryPngFix</a>. I have to migrate because I have started using JQuery and its conflicing with the htc file.</p>
<p>The thing is, it works but it seems to have over-layed the PNG (sends it to front rather than as a background!) on the whole div to the extent that I can not click on the content underneath, which is what makes me think the PNG has expanded or something, even though it looks exactly the way I want it to. I can't exactly debug this on IE6, since they have nothing like firebug, so was wondering if anyone can take a shot in the dark on what might be the problem.</p>
<pre><code>#box{
background-image:url(../images/checkout_fuzzy.png);
background-position:inherit;
margin:0 auto;
width:800px;
height:auto;
padding-bottom:20px;
}
</code></pre>
http://stackoverflow.com/questions/1691731/ie6-shrink-wrap-with-rounded-corners0IE6 Shrink-wrap with Rounded CornersBrett Pontarelli2009-11-07T02:20:47Z2009-12-16T11:00:03Z
<p>In FF and IE8 things look pretty good. I have a mock up of the drop down that I'm trying to create with rounded corners at bottom here: <a href="http://www.geowinedb.org/drop-down-test/test.html" rel="nofollow">www.geowinedb.org/drop-down-test/test.html</a>. In IE6 the mega div is extending to the far left edge of the window. What do I need to change/add (e.g. underscore hacks) to get the drop-down to shrink-wrap its contents (the ul). Thanks.</p>
<p>p.s. I'll be back to ask about the z-index problem that blocks the drop-down (IE6 again), but if anyone want to answer that as well it will be much appreciated.</p>
<p>EDIT 20091107: More specifics on the requirements: It must work in IE6+ and the drop down menus cannot be fixed width. The client wants to be able to change menu item text at will and have the drop-downs size automatically.</p>
<p>EDIT 20091111: I never did find a great solution. The menu along with some other requirements for hover changes, meant that javascript was necessary. So, I found that I could position each main menu item absolute, then position each sub-menu div absolute (this solved the z-index problem), and last I computed the width from the underlying ul and set the outer div width. Then the rounded corners positioned themselves correctly on all the browsers that I needed.</p>
http://stackoverflow.com/questions/242286/what-do-you-wish-you-knew-before-you-spent-hours-trying-to-fix-a-bug-in-ie613What do you wish you knew before you spent hours trying to fix a bug in IE6alex2008-10-28T05:03:49Z2009-12-16T06:26:23Z
<p>Mine would have to be the float and margin bugs...</p>
<p>If you float an element, and then specify a margin for it, it will double the margin.</p>
<p>The solution to this is to add <code>display: inline</code> to the element. This will stop the double margin, and all other browsers will ignore it because only block level objects can be floated.</p>
http://stackoverflow.com/questions/1830651/how-can-i-test-my-website-with-ie62how can i test my website with ie6oo2009-12-02T04:30:14Z2009-12-15T20:35:15Z
<p>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?</p>
http://stackoverflow.com/questions/1906999/does-this-applet-work-for-you0Does this applet work for you?Abs2009-12-15T12:08:03Z2009-12-15T12:56:24Z
<p>Hello all,</p>
<p>I have found a solution to get the full file path of a file that is about to be uploaded using a Java Applet. I need this for an internal system not anything else "dodgy"!</p>
<p>Can anyone confirm if this works in an IE6 browser: <strong><a href="http://www.maschek.hu/preview/ffx3%5Ffile/filepath.html" rel="nofollow">http://www.maschek.hu/preview/ffx3%5Ffile/filepath.html</a></strong></p>
<p>I have an IETester application that has IE6/7/8 in one place and all IE6 does is just load/wait for the page and it has been 10 minutes. I am trying to determine if this applet will work in IE6?</p>
<p>Its using PARAM tags so is that a no? This has worked on my IE8.</p>
<p>To get this to work, do I need to do more than change the PARAM tags to Object tags?</p>
<p>Thanks all</p>
http://stackoverflow.com/questions/1577993/createtextrange-strange-behavior-in-ie80createTextRange - strange behavior in IE8bozhidarc2009-10-16T13:17:25Z2009-12-15T01:23:19Z
<p>Hi all,</p>
<p>I have the following problem. In text input filed which work as an auto-completer some of suggestions it returns are wither than it. The problem comes when you leave the field. In IE the text cursor is positioned on the end of the suggested string, so you can actually see only the last part of it. So I used the code bellow to fix this and it works under IE6, but in IE8 this doesn't work, the field is always selected and I can not select anything on the page.</p>
<p>My question is what is the right way to move the cursor in the beginning of input field, after I leave it?</p>
<pre>
$('#myAutocompleter').blur(function(){
textRange = this.createTextRange();
textRange.collapse(true);
textRange.select();
});
</pre>
<p>(The used code is written in jQuery.)</p>
http://stackoverflow.com/questions/1900602/ajax-slowdown-because-of-virus-scanners-or-active-network-filtering1AJAX slowdown because of virus scanners or active network filtering?Petteri Hietavirta2009-12-14T12:18:08Z2009-12-14T20:45:00Z
<p>I just heard one of the clients having really bad performance on IE6 despite modern hardware and decent network connection. So we are suspecting either one or both to be the reason for the bad performance. Unfortunately no exact details of firewalls or such known at the moment...</p>
<p>What kind of issues you have had with web applications using AJAX heavily because of virus scanners or strange corporate network filters? And what kind of approach you have used to tackle them?</p>
<p>edit: Application on IE6 has been tested elsewhere and it performed well enough.</p>
http://stackoverflow.com/questions/1074380/does-ietester-run-the-actual-same-code-that-existed-for-ie6-ie7-or-is-it-an-e2Does IETester run the ACTUAL same code that existed for IE6 / IE7? Or is it an emulation?Daniel Magliola2009-07-02T13:36:13Z2009-12-14T11:28:30Z
<p>I just realized (yes, this was stupid of me) that IE8 Compatibility Mode is NOT IE7.<br />
All the time I assumed they would be switching back to the IE7 binaries, which apparently they aren't, as indicated by another question I found here in SO.</p>
<p>My question is...<br />
Does anyone know how IETester works?<br />
Does it run the <strong>actual</strong> binaries for IE6/7?<br />
Can I trust it for my tests as <strong>being</strong> IE6/7?<br />
Or should I consider it a "close" thing, but actually test in actual VMs to be 100% sure?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1847805/ie6-fatal-error-in-joomla0IE6 Fatal Error in Joomlamike condiff2009-12-04T15:44:25Z2009-12-14T09:10:16Z
<p>I am running an instance of Joomla on my server. When I load the site in any other browser the page loads fine, however, when I load the page with IE6 i get the following error. </p>
<p>"internet Explorer cannot open the Internet site <a href="http://example.com" rel="nofollow">http://example.com</a>", Operation Aborted."</p>
<p>Popup: "Continue loading This Page?" I press OK. Sometimes it takes me to the site, sometimes it takes me to a 404 error.</p>
<p>I don't seem to have the same error on other pages besides the home page.</p>
<p>Is there some way I can figure out what the problem is? I'm pretty sure it has to do with the javascript loaded on the front page but there's so many modules on there I'm not sure where to start.</p>
<p>There does not seem to be a Javascript error in a later version of IE 7/8, no javascript errors in Firefox. In IE6 though I cannot have this error.
I'm using a Yootheme template but the same Theme seems to work in IE 6 without the error when I view it on their site so this leads me to believe its a module loaded on the first page.</p>
<p>Is there a way for me to tell which module is not compatible with IE6? I use Firebug but I cannot find any errors using it. However, I still have a arather large problem that the site will not display in IE6 and 20% of IE users are still holding on to the 2001 browser.</p>
http://stackoverflow.com/questions/60740/which-jquery-plugin-should-be-used-to-fix-the-ie6-png-transparency-issue4Which jQuery plugin should be used to fix the IE6 PNG transparency issue?Brian Boatright2008-09-13T18:08:22Z2009-12-13T22:35:43Z
<p>Is there an IE6/PNG fix that is officially developed by the jQuery team?</p>
<p>If not which of the available plugins should I use?</p>
http://stackoverflow.com/questions/1897173/what-is-the-best-way-to-fix-ie6-png-trancparency-with-javascript-and-jquery0what is the best way to fix IE6 png trancparency with javascript and JqueryLaith2009-12-13T17:52:15Z2009-12-13T18:58:31Z
<p>is there any simple way to fix IE6 PNG transparency with javascript and jquery with out using any plug-in or something too complicated ?</p>
http://stackoverflow.com/questions/1878935/problem-in-ie-7-and-6-with-drupal-and-jquery-tools0Problem in IE 7 and 6 with Drupal and jquery tools Saurabh2009-12-10T06:09:22Z2009-12-10T14:45:50Z
<p>While the Jquery tools code seems to work well in chrome and FF it is not working in IE 6 or 7 ...
<a href="http://designbracket.com" rel="nofollow">http://designbracket.com/</a> I am using Overlay on the Our Services Link and the links under it (please excuse the formatting for now... still working on the site)</p>
<pre><code> <?php jquery_plugin_add('overlay'); ?>
<?php
drupal_add_js(
'$(function() {
// positions for each overlay
var positions = [
[0, 530],
[400, 20],
[400, 530],
[0, 20]
];
// setup triggers
$("#Mone[rel],#Mtwo[rel], #Mthree[rel], #Mfour[rel]").each(function(i) {
$(this).overlay({
// common configuration for each overlay
oneInstance: false,
closeOnClick: false,
// setup custom finish position
top: positions[i][0],
left: positions[i][1],
});
});
});',
'inline'
); ?>
<STYLE>
div.overlay {
/* growing background image */
background-image:url(http://flowplayer.org/img/overlay/white.png);
/* dimensions after the growing animation finishes */
width:600px;
height:470px;
/* initially overlay is hidden */
display:none;
/* some padding to layout nested elements nicely */
padding:55px;
}
/* default close button positioned on upper right corner */
div.overlay div.close {
background-image:url(http://flowplayer.org/img/overlay/close.png);
position:absolute;
right:5px;
top:5px;
cursor:pointer;
height:35px;
width:35px;
}
</STYLE>
<table style="margin-left:75px;">
<tr>
<td style="width:165px; vertical-align:top">
<a href="#" rel="div.overlay:eq(0)" id="Mone"style="color:#12636e;font-size:17pt;">Our Services</a></br>
<ul>
<li><a href="#" rel="div.overlay:eq(1)" id="Mtwo">Digital Media </a></li>
<li><a href="#" rel="div.overlay:eq(2)" id="Mthree">Online Marketing</a></li>
<li><a href="#" rel="div.overlay:eq(3)" id="Mfour">Websites</a></li>
</ul>
</td>
</tr>
</table>
<div class="overlay">
<h2 style="margin:10px 0">Overlay </h2>
<p style="float: left; margin:0px 20px 20px 0;">
<img src="http://static.flowplayer.org/img/title/tools24.png" />
</p>
<p>
Class aptent taciti sociosqu ad litora torquent per conubia nostra,
per inceptos himenaeos. Donec lorem ligula, elementum vitae,
imperdiet a, posuere nec, ante. Quisque mattis massa id metus.
</p>
</div>
<div class="overlay">
<h2 style="margin:10px 0">Overlay <me>#2</me></h2>
<p style="float: left; margin:0px 20px 20px 0;">
<img src="http://static.flowplayer.org/img/title/tools24.png" />
</p>
<p>
Class aptent taciti sociosqu ad litora torquent per conubia nostra,
per inceptos himenaeos. Donec lorem ligula, elementum vitae,
imperdiet a, posuere nec, ante. Quisque mattis massa id metus.
</p>
</div>
<div class="overlay">
<h2 style="margin:10px 0">Overlay <me>#3</me></h2>
<p style="float: left; margin:0px 20px 20px 0;">
<img src="http://static.flowplayer.org/img/title/tools24.png" />
</p>
<p>
Class aptent taciti sociosqu ad litora torquent per conubia nostra,
per inceptos himenaeos. Donec lorem ligula, elementum vitae,
imperdiet a, posuere nec, ante. Quisque mattis massa id metus.
</p>
</div>
<div class="overlay">
<h2 style="margin:10px 0">Overlay <me>#4</me></h2>
<p style="float: left; margin:0px 20px 20px 0;">
<img src="http://static.flowplayer.org/img/title/tools24.png" />
</p>
<p>
Class aptent taciti sociosqu ad litora torquent per conubia nostra,
per inceptos himenaeos. Donec lorem ligula, elementum vitae,
imperdiet a, posuere nec, ante. Quisque mattis massa id metus.
</p>
</div>
<div class="overlay">
<h2 style="margin:10px 0">Overlay <me>#5</me></h2>
<p style="float: left; margin:0px 20px 20px 0;">
<img src="http://static.flowplayer.org/img/title/tools24.png" />
</p>
<p>
Class aptent taciti sociosqu ad litora torquent per conubia nostra,
per inceptos himenaeos. Donec lorem ligula, elementum vitae,
imperdiet a, posuere nec, ante. Quisque mattis massa id metus.
</p>
</div>
</code></pre>
<p>Kindly suggest what shud I do to make it work in IE 6 and 7 . To make it convenient to check the code I have ensured that it has the HTML and CSS within it .. So to check simply cut copy paste in ur test drupal site. </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1666404/ie6-border-bottom-0-padding-css-issue0IE6 border-bottom: 0 & padding CSS issue.skidding2009-11-03T10:10:58Z2009-12-10T14:03:53Z
<p>Hi,</p>
<p>I just encountered a IE6 bug that I don't seem to identify over the net.</p>
<p>Basically this is when the behavior is triggered: a block element has border, on all sides except bottom, and top/bottom padding. and inside it there's another block element.</p>
<p>My entire code is to big to fit in here, but I narrowed it down to this simple example:</p>
<pre><code><div style="border: 5px solid red; border-bottom: 0; padding: 5px;">
<p>adasasasdas</p>
</div>
Following stuff
</code></pre>
<p>Now the thing that goes wrong is that the "Following stuff"'s position (whatever that is), will be altered weirdly. In this case a few pixels to the left.</p>
<p>To disable that weird behavior I can either keep the bottom border, get rid of the padding or make the contained element inline. But I kinda want them both. Before I have to give them up, I wanted to see if there is knowledge about this bug and if there is an alternative fix.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1873612/is-there-any-developer-tools-to-debug-javascript-error-in-ie-60Is there any developer tools to debug javascript error in IE 6?Q8-coder2009-12-09T12:33:23Z2009-12-09T23:36:38Z
<p>see my question on title.</p>
http://stackoverflow.com/questions/1875696/how-to-make-dropdown-menu-using-hover-on-a-in-place-of-hover-on-ul-1How to make Dropdown menu using :hover on <a> in place of hover on <ul>?Jitendra2009-12-09T18:00:38Z2009-12-09T20:27:11Z
<p>IE 6 only support :Hover on <code><a></code> then can we make css dropw down using :hover on <code><a></code></p>
<p><a href="http://htmldog.com/articles/suckerfish/dropdowns/" rel="nofollow">http://htmldog.com/articles/suckerfish/dropdowns/</a></p>
<p>This example use javascript to add hover on LI</p>
<blockquote>
<p>'sfhover' class to li elements in the
'nav' id'd ul element when they are
'moused over' and removes it, using a
regular expression, when 'moused out'.</p>
<p>So now we've got the Suckerfish
pumping out new classes, the next step
is to simply duplicate the :hover
selector with 'sfhover' class
selectors:</p>
</blockquote>