Hello all,
I have a very simple file upload PHP script. I am testing with a 175Mb file at the moment. This works fine on all browsers (firefox, chomre etc) including IE7 and above but it does not work for IE6.
When I upload the file, the script should export an access database (that was just uploaded) and all its tables to text files t...
Hi, I need to have a slightly different HTML element in IE7 than the rest, here is what I have so far:
<p>
<label> </label>
<!--[if IE 7]>
<span class="progressIndicator" style="display: none;"></span>
<button type="submit" class="submit" value="" id="qsubmit">SEND</button>
<![endif]--> ...
I have a problem in my page.I have some combo boxes in it.In other browsers it looks very good but in IE-7 it looks very bad. It is bordered white in it. How can I solve this problem. Any idea ?
...
I developed an IE8 toolbar in C#. The toolbar has a button which when clicked adds some user defined content to the page. I am using a BHO to add the required HTML, CSS & JS to the page. Everything is fine when normal HTML pages are loaded. But, my button isn't working when the loaded page is a pdf document. I found out that the adobe pl...
I have the following code that isn't working in IE, any thoughts?
<script type="text/javascript" src="assets/js/jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#login-ad').hide();
$('.Sub').click(function() {
$('#login-ad').fadeOut();
$('#remove-for-login').fadeIn()...
Why does this create a veritcal scrollbar in IE6, IE7 and IE8? How to avoid it?
(I had a real applet in there, but I discovered that this heavily mutilated one gave the same result and helps simplify the test case)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head...
In my asp.net webforms application I am using plain and simple forms authentication hooked up into my database (with the standard membership provider). Everything works well, I can log in , log out, get roles, etc...
However, after deploying my site to the intranet IIS server I noticed that IE cannot be authenticated. The actual authe...
Demo link:
http://elevation-inc.com/dev/test/ieform/
In IE 6/7/8 - if you enter a term into a simple input field, submit the form and then hit the back button - the input field retains the previously submitted term. If you then refresh the page, the value is also retained.
How, via HTML, can this pre-population be disabled? We want no...
I have a rows of data in div tags that float left and have widths set. They are inside li tags. Everything works fine in chrome and FF, but in IE8 the numbers show up in the middle of my rows, right next to the last div tag that doesn't have a float left.
The lists are created dynamically so I'll try to recreate an example.
<ol id='l...
I am using cookie plug in my application. where i display some information from cookies.
it is working fine with firefox, but have some issues with IE.
It works fine if i open a new tab in IE, it shows values from cookies, but if i close IE browser window it clears all cookies.
this is not the case with mozilla, every time i open mozilla...
Hi all,
This must be something very simple for the JavaScript experts out there. In the following code, I am trying to open an iframe to the full height of browser window.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
I get this irritating error message in IE, 'Events is empty or not an object'.
This is my Extended window:
windowKandidaatInfo = Ext.extend(Ext.Window, {
id: 'windowKandidaatInfo',
title: 'Kandidaatinfo',
border: true,
bodyStyle: 'padding: 5px;',
layout: 'fit',
width: 800,
height: 600,
pers_id: 0,
modal: true,
viewConfig: {forceFit: tr...
Hi there everyone,
I've got a problem with a web application, a rich internet application in fact, in which every component resides on a secure https connection.
Common content are: html files, images, js files and the like, all are on and retrieved from https connections.
A single part of the application (when a tab action gets execu...
I'm using Visual Studio 2008, Silverlight 3 and IE 6 (don't ask).
I'm trying to launch and debug the application with F5, but the debugger says my breakpoints won't be hit because the symbols aren't loaded.
My default browser is actually Firefox, but I am setting the Start Action of the project to specifically launch IE and point it at...
Hi all,
I am trying to generate an excel file with php. This works fine in Firefox but with IE I am only getting an empty file. This is what I am doing basically:
header('Content-type: application/ms-excel');
header('Content-Disposition: inline; attachment; filename='.$filename);
echo $data;
I have tried various header settings but ...
How can I use selenium to open up html files on my machine on a browser besides Firefox? When starting Selenium, the baseUrl is set to either a real website (www.google.com) and the initial open command of the test points to the local html file
selenium.open("file:///C:/to/local/file.html")
or the baseUrl is set directly to the local ...
I'm dynamically creating some complex polygon VML in internet explorer 8 using javascript to overlay shapes (parcels, streets, etc) over some "satellite" GIS images. I don't have any mousemove events registered on any part of the vml layer, nor the rest of the page, however when I move my mouse around over the drawn objects, my iexplore....
There is some straightforward AJAX code that works in Firefox and Chrome but not in IE. I am not doing anything fancy but the code is too long to post here.
Essentially, it is:
<script type="text/javascript">
var baseurl = 'http://mydomain.com/facebook/';
var setUpGame = function(lvl){
var ajaxurl;
ajaxurl = baseurl+'ajax.php?f=gg...
I have a piece of jQuery that requests a file (using .load() method) with some HTML and an embedded Flash video player. IE7 doesn't seem to load the Flash video player, but it does load all the HTML and applies proper CSS to the elements. It works at least on FF3.6.6. I've tried both static embedding [1] and SWFObject [2]. I've also trie...
I have a seperator li which has a background image, in an expanded tree menu, it may appear several times using the css:
.simpleTree .line {
background:url("/images/Css/gridLine.gif") no-repeat 0 0;
Even tho it is cached (from previous instances), there is still a slight delay in IE7 (~500 - 1sec) before all the background images ...