I'm using the hidden iframe method for file upload and it does not work properly in IE. The problem is that the function to be called after the server response is not called in IE.
The line is
document.getElementById("iframe_id").onload = uploadDone;
I also tried window.iframe_id.onload, document.iframe_id.onload, etc
I don't think that...
I've code that, depending on the selected item in a drop-down, loads some further controls (separate content for index==0 vs. index >= 1). The initial select's selected item is pre-set at the server end. I've and issue with reload/cache, where the user alters but doesn't submit a form and then click reload. Originally, I was loading the ...
why is if (element.innerHTML == "") not working in firefox
but works fine in IE , any ideas please ?
...
My code works fine in FF/Chrome/Everything except IE(failed in both 7/8, didn't bother going furthur down). Due to restrictions, I cannot use jquery and am hard-coding the Javascript. The issue is with IE, I am getting "preventDefault is null or not an object". Hoping one of you has the answer, and here's relevant code:
AddEvent Method:...
I am trying to resize the window in IE. For this, I am using
window.resizeBy(width - document.documentElement.clientWidth, height - document.documentElement.clientHeight);
However, sometimes this fails with an "Access is denied" exception. The way I was handling this was just to use
setTimeout('resizeWindow(' + width + ', ' + height ...
For some reason, this very basic page shows up fine in Chrome, but not FireFox or IE. I've never really needed to use Frames before, but they seem simple enough. Is there a problem with using a single frame within a frameset? I am trying to replace an iFrame with this single frame.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 frameset//...
It does it for every other browser ( I think ).
http://www.webdevout.net/test?01H&raw
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>Test</title>
<style type="text/css">
* { overflow: visible; }
#precedence { float: right; height: 60px; w...
I am trying to design a simple layout for eBay. I have never done it before and have to use html tables as the basis for the layout. It works fine in Firefox, chrome and safari but apparently does not work properly in IE (8 - latest build).
You can see the layout here - http://www.rockymountainsports.ca/ebay/ebay.html
Any direction wo...
One of my clients has requested the functionality of uploading documents by dragging and dropping them in the browser window. The website is being built with ASP.NET 3.5. I know of the 'dragdropupload' add-in for firefox, which allows dropping files on an upload control, but I also need it to work in Internet Explorer.
Does anybody know...
Hi
I was reading about this old project by Microsoft in 96 called Windows Nashville. There wasn't much about it, but what interested me was the ability to, say, replace your wallpaper with a dynamic webpage, and explore the Web from your desktop, literally. It wouldn't have been much with IE 3.0, but I think it's a shame they didn't dev...
The following code I cannot get to work (Jquery 1.4.2)
It seems like the selector is not working cause it doesn't do anything after that with the id=p_quantity. I added the .remove() just to see if it was that line that was the trouble and it did not remove the textbox in compatibilty mode, works in regular mode and FF. Stumped!!!
EDIT...
Is there an easy way to stop LinkButtons from being greyed out in IE when disabled, as it makes them hard to read.
Thanks
...
Why won't IE let me see the get the Content-Length header with getResponseHeader()?
I know there the headers are being sent; I can see them with Wireshark. IE just won't let me get them.
If the Content-Encoding header is NOT sent, regardless of if the content-is gzipped or not, I can get them just fine.
Sample Code:
function getX...
There are several helpful JavaScripts and .htc behaviors that patch over the holes & buggy features in Internet Explorer's rendering engine. It seems most of them have some overlapping or incomplete feature support and it's hard to decide what to use:
DD_Roundies: border-radius
Fetchak ie-css3: border-radius, box-shadow, text-shadow em...
I have 2 wrappers, one inside the other, as per html below. The first wrapper contains a tile which scrolls down. Wrapper 2 has an image 940 X295px. Works beautifully in IE5 & IE8, but in IE7 the footer jumps up to wrapper2 and the text extends down, underneath and below.
This is my html:
<div id="wrapper">
<div id="header"></div>
...
I am opening popup window form java script like this.
window.showModalDialog(popUrl, name, appearence )
In chrome it works fine. but in IE my session variables are lost.
Please help!!!!!
Thanks
...
Hello,
I have a div, and content of this div is updating on every ajax request. The problem is when I'm using IE , I'm losing all input values.
For example:
1) I have no content in the div.
2) I'm getting the content using ajax request.
3) I have a <input type="hidden" name="hotels_id" value="2"> after that request.
4) I'm po...
I have problem with this JS code. When I started to test it, it is working properly with FF and Chrome but not with IE8.
I guess, something is wrong with IE visiblity property or the mouseover events. I tried everything but I am so deep in here I can't see the whole picture.
How can I make it run properly also in IE. Hate IE :))
$(doc...
I am trying to get a screenshot of a site that is password protected using IECAPT, any ideas on how I could pass in the creds?
...
Hello,
I use ajax to return html code and append it to a div layer:
$(div_layer).append(ajax_value);
ex:
<br/>
<div id="divName"><br/>
--value appears here--<br/>
</div >
I can successfully append the code to the div layer, but the css attributes are lost ONLY in IE. eg: border-color, border-width.
help me out,
thanks
edit: ...