internet-explorer

.focus() doesn't work on an input while orher attributes works

I have a classic table / thead / tbody structure, which I add a line at the end of the tbody. The line contains only an input element. The code works in Firefox 3.6 but not in Chrome v5 or IE8. I'm using jQuery 1.4.2. Does not work: $("#" + AJAX_ID).parent().find('tr:last > td:nth-child(2) > input').focus(); Does work: $("#" + AJAX_ID)...

Does IE completely ignore cache control headers for AJAX requests?

Hello there, I've got, what I would consider, a simple test web site. A single page with a single button. Here is a copy of the source I'm working with if you would like to download it and play with it. When that button is clicked, it creates a JavaScript timer that executes once a second. When the timer function is executed, An AJAX ...

IE resizes table columns when dynamically adding rows

I want to create a table where each row has an expandable details row. See the below simplified example code. Upon clicking a row in the visible table, the corresponding row from the hidden table should be cloned and inserted below the clicked row -- thus creating an expanded row effect. A second click removes the details row. The probl...

What is the best developer toolbar for IE?

I use 'FireBug' extension of FF to debug designed webpages and installed 'IE Developer Toolbar' for IE to get this purpose, but it is not as good as FireBug. It is difficult to work with it. Are there any other extension for IE that are more user friendly and easy to use?? ...

Problem in displaying image in FireFox

Hello friends, I have a JSP page on which I have a div tag in which there is a a IMG tag. Using this IMG tag I want to show an image in it. Here the source path of an image is comes from database so I assigned a JSP variable using JSP scriplet. This JSP variable have the source path of an image. This path of image may be of differen...

ActixeX Control zoom in/out in IE

I have a webpage with nested ActiveX control. When I use zoom in/out in IE browser design zooms correct, but ActiveX control stays the same size. How I can zoom in/out ActiveX Control corresponding to webpage zoom? ...

Second CSS class not working in IE8.

I have the following div being rendered to the client, but on IE, the checked-yes class is ignored. If I view the target element in the 'Developer Tools', that class is completely missing from the Style panel. The shift-item-present class is attached server side, and the checked-yes class client side, depending on the present attribute...

Internet Explorer discards cookie when printing?

I have an unusual issue with this printing under IE7/8 (likely 6 as well). My page contains a dynamically rendered graph. The contents of the graph are determined by the identity of the user who visits the page. The page is not available without prior authentication. The page loads and renders correctly in IE7/8. However, the graph doe...

jQuery doesn't work in IE8?

Hi, I am working on a site here: mfm.treethink.net All the jquery works fine in Firefox, Chrome and Safari but on IE8 it gives me errors and the banner at the top doesn't work (which uses the crossSlide jQuery plugin) and as well the image rollovers don't work with the colour change. IE8 is telling me that the errors are on lines 53, 1...

How to set the publisher name in a BHO

I have written a BHO and a toolbar for Internet Explorer in C#. They are getting installed and working properly. In the manage add-ons window in IE8, I am able to see both my BHO and toolbar. But, the publisher name of both is set to "Control name is not available". How can I set the publisher name? ...

Unobstrusive pseudo-classes and attribute selectors emulation in IE

I'm trying to emulate some pseudo-classes and attribute selectors in Internet Explorer 6 and 7, such as :focus, :hover or [type=text]. So far, I've managed to add a class name to the affected elements: $("input, textarea, select") .hover(function(){ $(this).addClass("hover"); }, function(){ $(this).removeClass("hover"); }) .focu...

JQuery - confirm() not working in IE

Hello, I have an easy script, that works in all browsers, except IE(8, haven't tryed lower versions yet). $('.deleteItemIcon').click(function() { var deleteConfirm = confirm('Do you really wanna delete that item?') if (!deleteConfirm) { return false; } }); Can you see a reason, why that shouldn't be working, if yes...

CSS rule ignored in IE8 Quirks Mode.

I have a ul/li based side menu, styled with two CSS rules, the following of them is ignored by IE8 Quirks mode, and I assume IE6: ul { padding-left: 15px; } I can reproduce the problem in FF by removing this rule completely. I have also tried using jQuery to apply the rule, with no change in IE8: $("ul.menu-class").find("ul").css("p...

appendTo and other dom manipulators problems in IE7/IE8

I've a strange behaviour with jquery ui autocomplete and IE7/8. The default behaviour of autocomplete is to create a UL and append it to the BODY of the page. In my case i want to append this UL to the DIV that also has the INPUT (where the autocomplete is triggered). So i've done this: (function($) { $.widget("ui.combobox", { ...

PHP class that changes an image and reloads the page not displaying new image in Internet Explorer

I have a class that runs a function when the image is clicked on to display an additional image. This function produces a linked div tag that reloads the page with a set of variables that then produces another image. The image is set as a background image on a large div tag behind the linked div tags to give the same effect as an image m...

Cookie Editor for IE?

Hi, I need to manually edit some cookies in IE 7 to do some testing. Firefox has decent CookieEditor plugins available. Have you used any reliable cookie editors for IE? ...

<a> with an inner <span> not triggering :active state in IE 8

I want to style the :active state of a button that is represented by an <a> tag. The <a> tag has an inner <span> (beacuse I want to add an icon to this button). I notice the :active state is triggered properly in everything but Internet Explorer 8. In IE 8, it appears that the area around the <span> (the <a>’s padding) triggers the :act...

HTML Doctype Setting / IE Quirks Mode

I'm working within the parameters of an un-reachable developer, whom has created an html generation system for our products.. Whenever a new page is generated he places: <!-- updated page at 05/MAY/2010 02:58.58 --> <!-- You must use the template manager to modify the formatting of this page. --> resulting in my code looking like: <...

A problem with the way Submit button works in IE and Mozilla

Hi, I have a form in HTML in the following order <form> input field <submit button1> input field <submit button2> Now when I am pressend the "Enter" Hardkey from Keyboard, it is taking submit button2 in IE but not in Mozilla. For me Mozilla is working fine. Can anyone help me out in this... ...

Firefox why window.opener is defined even for a new tab

Hi! I am porting quite old corp application from IE to Firefox. Here is my situation. User goes away from computer for a while and his session becomes expired. When user tries to access something in popup, he is being redirected to login page (in popup window). In login page onload event popup window chain is being closed and root pag...