One of our clients has reported that they are experiencing 404 (file not found) errors when attempting to navigate a website that we developed. The behaviour only appears to affect her - other users on the same machine can navigate the website fine, but the problem follows her from one PC to another.
I've had a good look through the II...
<%= Html.ActionLink("Account Page", "Index", new {
controller = "Account", culture = (string)Session[culture],
client = (string)Session[Client], brand = (string)Session[Brand],
storeid = (string)Session[Store] })%>
This works in almost all browser (IE7/8, Mozilla, safari, chrome) except IE6. The problem here is the links ar...
I have the following code working perfeclty in FireFox, but it won't work at all on IE6:
$("[name=servicos\\[\\]]").each( function() {
this.checked = false;
alert(this.name);
}
);
$.getJSON("check_servicos.php?id=" + id,
function(data) {
$.each(data,
function(key, val) {
alert($("#" + key).attr("id"));
if(val >...
IE6 has got me again! I can write
slideSuccess.show();
and all will be fine. When I replace that very line with
setTimeout(function() { slideSuccess.show(); }, 1000);
then, after 1 sec, my slide shows up garbled.
(slideSuccess is a jQuery object if that matters.)
Does anyone have any ideas what is going on here?
Thanks.
...
Hi,
I have a form which has expanded beyond the desired height in IE6 only :(
Please view this fiddle for the problem:
http://jsfiddle.net/fbTDZ/
I don't see an issue in other browsers.
...
Hello,
I'm using the following peace of code to do so ajax magic on a page and it works alright for any browser - except, you guessed it, lovely IE6
jQuery.ajax({
type: "GET",
url: jQuery("#filter_form").attr('action'),
data: jQuery("#filter_form").serialize(),
dataType: 'script',
success: function(response) { /...
Having some nasty issues with IE6 and reading my div form layout, the html:
<form id="brochureForm" name="brochureForm" action="/how-it-works/request-a-brochure/" method="post">
<div class="row">
<div class="label">
<label for="szName">Name</label>
</div>
<div class="field">
...
My application generates XLSX files based on a users requirements.
After the XLSX file is generated the user is redirected to where the file is saved using Response.Redirect...
Response.Redirect("filename.xlsx")
When the user then opens the file... they recieve this message.
The file you are trying to open, 'filename.xls', is in a di...
Hi,
I am developing web with wordpress and have a problem with it's submenu. The problem is that it doesn't appear with hover on IE6. There must be something wrong with css, i guess. Any ideas? Is this possible to be done without javascript?
as i understand the problem is with #access ul ul { display:none; } as i delete it, it shows all...
I am making a WYSIWYG webpage editor: http://brokenmyriad.com/editor2.php, however I have come across a problem when trying to add image functionality.
Note: the image is not inside a contenteditable element, but is just a normal floated image.
The problem can be recreated by clicking into either the paragraph or the heading and the cl...
Hey guys,
just got into this problem with jQuery superfish menu - the dropdown menu is not showing up at all in IE6.
From my understanding IE6 has a problem with z-index and probably my menu is hidden under the .middle div.
Tried out the solutions suggested by this guy:
http://nhaskins.com/post/ie-js-menus-hide-behind-jquery-slide-sho...
For some reason this site displays fine in all browsers but IE6. In IE6 the top navigation does not display at all... Any help would be much appreciated:
I have placed the code below (I had to take out image urls to post):
<div id="nav">
<ul>
<li class="floatLeft" id="contact">Contact</li>
<li id="about">About</li>
<li ...
I'm trying to align some text on table cells with a PNG Transparent background, I uses the filter:progid:DXImageTransform.Microsoft.AlphaImageLoader() to fix this in IE6. But the text does not align to the middle with the style filter:
CSS:
.fh {
font-family:SimSun;
font-size:12px;
overflow:hidden;
padding:0 2px 2px;
text-align:left;
v...
If you receive a site which is working fine on all browser except IE6 (We can't rebuild the whole site's mark-up). and in IE6 layout is very disturbed.
and only IE6 supported CSS selector is being used in site.
then how do you start to finish to solve IE6 issues? what efforts do you make and how?
1st thing is to add IE6 only CSS
<...
I have most of my page's content within <div id="ret">. At some point, this content is wrapped inside a <div id="_"> -- this has all sorts of CSS implications, as there is a stylesheet that has already loaded with the page full of rules beginning with the selector #_ #ret{}.
However, the new styling implications are not acknowledged (I'...
tab not showing in IE 6, working fine in others
http://jsbin.com/ehege/2
how to solve?
<style type="text/css">
*
{
margin:0;
padding:0;
}
li
{
list-style:none;
}
a
{
text-decoration:none;
font-size:14px;
}
#...
Hi Guys
I have a newly deployed mvc app on a win2008 server box.
I am trying to troubleshoot some very strange ie6 behaviour when over https. if a ie6 user connects to the webserver over https a simple post back or ajax call takes around 1 minute to complete, no errors are raised on the browser, it just sits there ticking away for a...
Hi,
This is a really strange issue, I am trying to use the Recaptcha on one of the website, and it works for all browsers tested except for IE6.
I have make a reference to the google's js:
http://www.google.com/recaptcha/api/challenge?k=the_key
and it is loaded according to fiddler2 & the 'onreadystatechange' event (which have a ready...
I am using the following PNG fix for IE6 but it does not appear to be working for me:
http://www.dillerdesign.com/experiment/DD_belatedPNG/
It was working previously but i am not sure what i am doing wrong.
I am working in a .NET environment and all of my JS is referenced like so:
<%= Html.Script("~/Scripts/jquery-1.4.2.min.js")%>
<%...
Hi all,
I want to display the rows of a table on a single line. This is a problem in Internet Explorer 6 and 7 because setting the float attribute to left and the display to block won't do. And changing <tr>s to <td>s won't do either as these html elements are generated by a framework's code that i am not allowed to change.
Edit: Some...