internet-explorer-6

jQuery 1.4.2 $.ajax with specified jsonpCallback crashes IE6/7

I posted a similiar thread before here, but after further investigation I've found that the problem is with $.ajax jsonpCallback parameter. In the following simple code it crashes every time on the 2nd request (cache problem?) <html> <head> <title>Hello world</title> </head> <body> <span id="ClickMe">Click Me</span> </body> <script s...

CSS Menus having cross browser problems

I am trying to solve a problem with a CSS menu where the menu does not display properly in IE 6 I see that the HTML has some conditional code to make it work with different browsers but I do not understand it well enough. Can someone suggest a fix so the selected tab in order displayed without the grey breaK? Thanks! Here's the CSS...

How to get the start and end points of selection in text area?

i want to get the cursor start and end position of a selected range in a text-field or text-area. i tried lot of functions in various forums. but when the last character of the selection is a new line character JavaScript ignore it in IE6. any one having idea ? ...

Why won't Javascript assembled Iframe load in IE6 over HTTPS although it will over HTTP?

The issue: The iframe won't load inside the <div id="shipnum"></div> tags on the review and submit page here (relevant HTML and javascript is also below): https://checkout.netsuite.com/s.nl/c.659197/sc.4/category.confirm/.f Login:[email protected] pass:test03 To produce problem: - Where it says "Your Third Party Shipper Numbers (To ente...

Dropdown menu (SELECT element) not losing focus correctly in IE6

Example (load in IE6): http://jsbin.com/uheco/14 In IE6, if the user clicks on a SELECT and does not click any OPTION but instead clicks somewhere else on the page outside the SELECT, the SELECT still has focus. I expected the SELECT to lose focus when I clicked once outside of it (such as in IEs 7 & 8). Functions bound to the blur ...

how to fix this IE6 input bug

var check = function(){ return false; } var submit = document.createElement("input"); submit.type = "image"; submit.src = "submit1.gif"; submit.onclick = check; _submitSpan.appendChild(submit); i created a form and append a input button, but i found it can't work in IE6, when click the button, the form auto submitted. can anybody he...

a question of javascript DOM functions in IE 6

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Test</title> </head> <body> <div id="test"> </div> <script type="text/javas...

How to fix CSS layout issue in IE6 using Grid 960 and custom styles

I am having difficulty getting IE6 to 'play nice' with the layout I'm trying to create (perhaps it's too specific and I'll have to try another approach.) The page in question can be found at http://myersprojects.com/uk/en/index.html I am using the 960.gs grid system, and have a number of custom styles defined (including a conditionally...

CSS: problems with a floating element in IE6

i have this page. login: [email protected] pass: m As you can see in FF the filter is on the right of the list, but in IE6 not.. How do I fix this problem? ...

jquery stop method causing ie6 to stack overflow

I have six menu options in my webapp, and when the user hovers over a link (ul>li>a) I switch an image to show a context relevant photo, and I fade the image in and out. However, I noticed that when a user moved their mouse quickly between links, the queue didn't process properly and the user would often be hovering over a link and have...

mootools Fx.slide not working IE6

Hi there, I have some javascript that is built on top of mootools that is basically giving a div some show/hide functionality. window.addEvent('domready', function(){ /*var mySlide = new Fx.Slide('customise_text').hide() var mySlide2 = new Fx.Slide('customise_link').hide() $('customise').addEvent('click', function(e){ $('customise...

Is a TD rowspan supported in most browsers (including IE6)?

I need to use a table row on my web page with a 'rowspan' set. I'm just concerned that some browsers may struggle with this. Are there any known issues? Or is it safe to use? ...

parent zIndex problem IE6 and IE7

For my understand. I need to put div 2 in front of div 3. How can I do this in IE6 and IE7. All of others browsers works normal. Here is my code. CSS div { position:absolute; } #div1 { background:#0F9; top:0; left:0; width:500px; height:400px; } #div2 { back...

jquery: drop-down boxes floating over modal dialog with IE6

I've got a web form with various html fields. There is a textbox input field which is wired to work as follows: when it attains focus a modal dialog should showup asking user for confirmation. I've used jquery ui on my page. Hence I've adopted a jquery UI modal dialog to show up here. The problem is when the dialog is "modal" the d...

JQuery DatePicker not saving correct dates on partial postback.

So I have some textboxes (in an UpdatePanel in a ModalPopup in a User Control) that look like this: <asp:TextBox ID="exampleTextBox" runat="server" MaxLength="10" CssClass="datepicker" ReadOnly=true Text='<%# Bind("ExampleDateField") %>' Width="77px"> </asp:TextBox> I also have some jQuery (imported from file on the Master p...

dropdowns disappear under iframe in IE6

Hi All, I need to absolutely position a transparent iframe on top of the form with dropdowns. But when I do so all dropdowns under iframe disappear. I am testing in IE6 on XP SP2. Couldn't find any solution in Google. Anybody managed to fix this? Thank you! Dasha ...

IE6: Calling function inside parent window from iframe on same domain

Does anyone know how to call a javascript function inside parent window from iframe on IE6? Usually, parent.functionName() works for all browsers including IE7+. However, with IE6 it does not work. If you know please shed some lights! Thanks in advance. ...

IE6 can't download file

I've written a Web server that serves various kinds of content. When sending back a JSON or CSV file, IE6 is unable to save the file. Firefox 3.6 and IE8 save those files just fine. The server uses the text/json Content-type for JSON and text/csv for CSV files. I've tried changing the Content-type to text/plain -- no difference. IE6...

PNG transparency with IE6

Hello! I need to overlay two PNG images and see this in IE6. Simple overlay like: <div style="position: relative; width: 150px; height: 300px;"> <img src="im1.png" alt="" style="position: absolute; top: 0; left: 0;"> <img src="im2.png" alt="" style="position: absolute; top: 0; left: 0;"> </div> works only for 256 color images, it do...

Launching a Radwindow in IE 6 causes all dropdowns to hide

When launching a modal radwindow in IE 6, any dropdown's visible on the parent page are hidden. Once they are hidden, they are gone even after the modal has been closed. These are pure ASP.NET dropdownlists. There is nothing special about the dropdown's that are hidden - I can add new dropdowns to the page with nothing in them, and th...