Hi,
I have a class defined for text fields. I am using input[type="text"] for all browsers but IE6, and using jQuery to add a ".txt" class name for IE6. The problem here is when I define both selectors on the same line, IE6 does not reconize the ".txt" class. But if I define each selector seperately with the same rule it works.
This ...
I have implemented export to excel feature in struts 2 using apache POI.
It works in IE7 and Firefox on Windows XP.
But does not work in IE6. The pop up dialog to open or save excel does not show up on IE6.
I get no errors or exceptions.
This is the result type.
<action name="exportToExcelRIQueue" class="queuesAction" method="expo...
I know, I know, IE6 is the devil but I have no choice but to work with it on this project. When I try to remove a parent div it works in every browser except IE (hasn't been checked in other versions yet).
Any idea why? - just added some html
$('a#remove-product'+i).click(function(event){
$(this).parent('.product').remove();
i--...
Possible Duplicate:
Why is IE6 still a corporate favorite in some organizations?
As of July 2010, IE6 browser usage is still lingering at around 7%. (w3schools.com) It's well known that most installations of IE6 are coming from companies that have internal software systems that absolutely require the use of Internet Explorer 6...
Page in question: http://secantmedical.com/biomedical-textiles/biomedical-textiles.php
The heading area with the words "Biomedical Textiles" is set very simply with a CSS class that mirrors the page name, in this instance the class is "biomedical-textiles". Other examples include "medical-applications", "design-and-development", etc. Yo...
Is there a way to get rid of the border on <hr> element in IE6 without a wrapping it in another element? Another requirement is no hacks, unfortunately.
I've managed to do it for all browsers by styling the border as such:
hr.clear {
clear: both;
border: 1px solid transparent;
height: 0px;
}
Yet IE6 still renders a 1-pixe...
hello,
i am using whatever:hover (http://www.xs4all.nl/~peterned/csshover.html) script to mimic the :hover selector in IE6. the suggested use it to attach it to the body element as IE6 behavior. but all my pages use XHTML 1.1, so CSS validation in VS2008 fails when I try to publish my site, so publishing fails.
are there good ways to f...
Hello, I have a function that allows me a selection from a list to update a table. When I tested in FireFox it works without problem
But my application should also run IE6 and when I test any results my table does not update much but I get to put my lines in my table.
My script:
<script type="text/javascript">
function actualiserDLIS()...
In our asp.net application we have an upload feature. When Fiddler is running on the client (with Act as a system proxy) the upload is quick (10megs in 20 sec). however, when Fiddler is not up on the client it's taking about 5 minutes. Any one have any suggestions?
...
IE6 and 7 return a js error "expected identifier, string or number" on this :
function fadeopacity (){
var opacity = $("#pics_list > li:first").css("opacity");
$("#pics_list > li").hover(
function () {
$(this).stop().animate({
opacity: 1,
}, 300, null)},
->this is the l...
<img src="/images/home-1a.png" id ="tab66" alt="home" />
#tab66 {
margin-left:0px;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(...);
}
This is my code of png image in ie6 but still it does not show transparency
...
hello, I wonder if it is possible to refresh a div tag in javascript?
My ajax script
<script type="text/javascript">
function actualiserDLIS()
{
var url = 'administration/gestionUtilisateurs.do?method=actualisationDLIs';
var params = 'DR='+encodeURIComponent(document.getElementById('selectDR').value);
var myAjax = new Ajax.Reque...
I need to get my application to work in ie6.
I have found that the default login page does not work.
The login section in white is to the right of the header, and more importantly I cannot enter anything into the textboxes. How do I fix this?
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.Vie...
In firefox\opera\chrome it's ok, however IE6 render is abominably
How I can make this block normal?
...
Possible Duplicates:
IE6: To support or not to support.
Should we support IE6 anymore?
I'd hate to (HATE TO) admit it, but there are some people still using this browser. A client of mine is facing an issue where the "transparency" area of a png comes out a light grey - ONLY on IE6.
I know it's an unsupported browser, but ...
I have a script that lets you put a link at the bottom of some text so you can reveal more text. It works great in Firefox. When you click the link, the div appears and the other parent divs expand with the growing child div. But the parent divs don't expand in IE. The text actually disappears behind the row (this is in a table create...
I understand that sessions are kept when opened in a new tab but is it possible to inherit the session when opening a new instance of IE7 or IE6?
For example, I opened a web application, if I opened a new browser and I went to the same URL, it will keep me logged in.
...
Hi.
Microsoft MVC, C#, IIS, CSS question.
I have a problem with the following scenario in IE6:
I have a View that would display a variable number of images, each image returned from the controller side as a BinaryResult.
These BinaryResult objects are then assigned to the src attribute of the img elements in the page.
Example, if I ...
Hi
I'm having a display problem with an absolute positioned div in IE6 + IE7
I'm trying to display a drop down menu. this drop down menu is positioned absolute.
now as soon as there's another element below this menu that has position: relative, the absolute positioned drop down menu is displayed behind it.
this only happens in IE7 and ...
I need expert advice here...
I have run into the strangest problem in my career...
I have a form with alot of "SELECT" tags. Each tag contains a large amount of "OPTION" tags.
The form wont submit at all, but when I remove parts of the form content (for example, some SELECT tags), then the form will submit properly.
However, there is...