I all.
I have the following form used to temporarily upload a photo on a j2ee server and then crop it with imageAreaSelect plugin :
<form name="formAvatarName" id="formAvatar" method="post"
action="../admin/admin-avatar-upload"
enctype="multipart/form-data">
<label>Upload a Picture of Yourself</label>
<input type="file" name="upload" ...
I'm using jQuery's validation on a form. When the form is validated, I'm using a submitHandler to fill a dialog with data from the form then I open the dialog to display it. Works great except for in IE6. Nothing displays. I've tried initializing the dialog before and after running the validation code but neither makes a difference. ...
I've done a good amount of research on this and found a bunch of reported problems and solutions but the general consensus seems that all change problems in IE6 were fixed in jQuery 1.4.2.
I'm having an issue where a change event is not firing in jQuery 1.4.2, but it did fire successfully in jQuery 1.3.2. This is in IE6.
I'm about to s...
Hello all,
I have just tested my site on an old IE6 browser on a windows server.
The problem I have is when I submit a form, the POST data I get on the other page is empty. Array().
This site has worked on IE6 on a different windows server, it has worked on my laptop and works on all other major browsers (Firefox, Chrome, IE6,7,8, Saf...
Hi,
I am using a forever frame (COMET streaming technique) and in IE6 whenever a user clicks on a link (to even just basic JavaScript method) the connection is immediately dropped and has to be manually refreshed.
Has anyone come across a similar issue and / or know how to address it?
...
I've got a form that uses a jQuery dialog window for verification of the form data. When the user clicks the submit button on the form, the dialog window displays (only if the form validates) and shows the data the user has entered in the form. If they verify that the data is correct, they click OK in the dialog window and the form gets...
hail, i have a problem to serve file with PHP into client. that when i want to download it the save and open dialog will be appear but progress of download will not show. what is my problem?
header that i send it to client:
header('Content-Type: ');
header('Content-Description: File Transfer');
header('Accept-Ranges: bytes');
header('C...
this is the code for menu CSS code. It will work on Firefox but not in IE6.
.menu li a:hover .menu ul li:hover a{
background-image:url(images/ye.jpg);
color:#000000;
text-decoration:none;
}
...
Yes, another stupid IE6 problem. Unfortunately i cannot turn a blind-eye to this one. The input button is not showing up in IE6 but is working in all other browsers and the layout is breaking as well. Any advice would be greatly greatly appreciated
to see the problem online - please visit: http://chickenofthesea.com/company.aspx - ag...
I am creating some elements in javascript like so:
var parent = document.createElement('div');
parent.setAttribute('id', 'parent');
var child = document.createElement('div');
child.setAttribute('class', 'child');
parent.appendChild(child);
otherelement.appendChild(parent);
I have a stylesheet which has styles for #parent and .child....
In Word you can place an image on a page and have the text flow nicely around it. I was wondering how far one can get towards this using CSS, noting that is has to work in IE6.
I already have something sort of close using float, but the floated child-element still 'blocks' text above it. So it partially wraps. Is it possible to put a ch...
I'm trying to centre the content of a div such that the display is correct in IE 5,6,7 and 8, as well as FF.
<div id="YoutubeClip">
<h3>Subscribe on YouTube!</h3><br>
<ul class="gallery clearfix"><a href="http://www.someyoutubevideo.com" rel="prettyPhoto" title="Some youtube title"><img alt="some youtube title" src="youtube cl...
Possible Duplicates:
IE6: To support or not to support.
Do you plan to support IE 6 on your future projects?
I've finished the design and about to code HTML for a website that will use fancy form elements and effects.
I'm wondering if I should support IE6? What are the latest stats? Do you support IE6 still?
...
We have a requirement to auto print dockets from a webpage.
We are developing a stock control application using ASP.NET, MVC2 using IE6
Scenerio is as follows:
Once the user has completed the order, a docket should be automatically printed. At the moment, I am using Javascript command "window.print();" method however the print dial...
I got a simple jquery script workin on all but IE
j('.slide').click(function(){
j('#content').load('/menu.php');
return false;
});
Here's the url http://identitykit.gotdns.org/
it's valid xhtml and all other similar questions don't answer my problem.
menu.php starts with
<?php
header("Cache-Control: no-cache...
Hi all.
Basically, I'm having trouble removing the horizontal scrollbar in Internet Explorer 7 and Below. I've tried the code below and It seems to work fine in every browser except IE.
overflow-x: hidden;
The even bigger problem is that, even though the scrollbar isn't even removed, it seems to completely screw the layout.. It some...
The following HTML does not work in IE6 for me:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><body>This text is visible.<textarea>This too.</textarea>
This is not visible.
<select><option value="a">A</option><option value="b">B</option></select>
Neither is this.
<textarea>Nor this.</textarea>
Nor this.
</body></h...
IE6: when I place a partially transparent image in a div, the radio buttons in that div that overlap the non-transparent pixels of the image become unclickable. Example:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en...
In FF3 I see a hand when the mouse is over the element, but in IE6 I don't. Why ? Is there any workaround ?
Example
...
Hi all,
I have an iframe which to i'd like to pass parameters to.
So I do this (ldots means and so on)
my_iframe.src = "myaction.do?param1=value1¶m2=value2&..."
My current problem is that when the query string passes about 2100 characters, the request is not sent. Background on this is that one of the values passed can be about...