One of the web pages on our site is extremely long. Although the page itself does not call any javascript or jquery functions, its base page registers the JQuery source script (jquery-1.2.6.js) and this seems to cause IE7 to display the "A script on this page is causing Internet Explorer to run slowly." message when you click on a link t...
I have a web application that I'm working on for work and its not very Firefox friendly (design was made 2 years before I started with the company). There are some CSS issues that I am having problems with and I can't use a CSS Reset because the page design is pretty much set in stone and it would cause more work then I need right now.
...
What is it about this source code that causes it to actually generate a table in IE instead of just doing nothing.
function generateATable()
{
tableContainer = document.getElementById("tableDiv");
var tableElement = document.createElement("table");
// Append the Table Element to the table
// container.
tableContaine...
At my personal website while viewing a single post, i have an overview DIV, and in FF it has no space between the main header and the excerpt, but in IE there is a space there. Any idea on how I can get rid of that?
I have FireBug for FF and i installed IE Developer Toolbar on my other PC to try to inspect the code to find the problem, ...
I'm running into some little glitch on Internet Explorer. The site looks like it should in Firefox (http://i27.photobucket.com/albums/c190/blcArmadillo/FirefoxView.jpg). But when I load it in Internet Explorer the background from my top bar seems to be applied across the site as you can see in this screenshot: http://i27.photobucket.com/...
We have a data entry portlet that occassionally generates urls in excess of the 2k limit enforced by Internet Explorer.
Is there any way to stop these excessively long urls from being generated without loss of functionality?
...
I've got some javascript code that applies an alpha transparency. Before it does that it attempts to detect what type of transparency the browser supports and stores that in a variable for use later. Here's what the code looks like:
// figure out the browser support for opacity
if (typeof br.backImg.style.opacity != 'undefined')
op...
I have a page with this HTML:
<p>
<img src="images/ih01.jpg" width="80" height="110" align="left" />
This course overs basic human anatomy and physiology, including the major
body systems and their functions. When you have completed this course you
will be able to identify major body components and their core physiologic...
I don't use a mac much so my exposure is minimal but can I safely presume that IE on the Mac is dead?
I know that Microsoft isn't developing it any further and that Firefox, Safari (Opera and Camino) all run on Mac (and from my stats they are most used, in that order)...
So the question is: Is it dead? and if so, when did it die?
I st...
Hi, I am trying to layout a header for a web site and I would like to have 4 containers in the header for dropping various user controls into.
The 4 containers need to be positioned top left, top right, bottom left and bottom right inside the main the header container.
So far I can acheive this, the bit I can't do is that the bottom le...
I have a page which has a rectangular area with text and icons in it and the whole thing is clickable. The anchor tag is set to display: block. One of the icons has an onclick handler. If a person clicks on an icon, I just want the icon's onclick handler to run and not to actually activate the containing anchor tag.
Firefox behaves l...
I have a page in my application that refreshes some content (a list of users currently signed in) from the server every 10 seconds. This data is loaded using the Ajax class from the mootools framework, specifically with Javascript that looks like:
var xmldata = (function() {
new Ajax('xmldata.jsp?time='+$time(), {method: 'get', onCo...
I have two websites, let's say they're example.com and anotherexample.net.
On anotherexample.net/page.html, I have an IFRAME SRC="http://example.com/someform.asp". That IFRAME displays a form for the user to fill out and submit to http://example.com/process.asp. When I open the form ("someform.asp") in its own browser window, all works w...
I have used background image and css border to a button. It looks good in Firefox but IE does not show it correctly. The top border is not aligned with left, right borders in IE. How to correct it in IE? Below links for your reference.Screen shot IESelectorScreen shot Firefox
...
Hi,
How to open an Image in browser (IE) from our XBAP Application????
I did not saved the image file anywhere and i have the object of the Image class (I will assign its content later - dynamically). I want to open this image in the browser from my XBAP partialy trusted application.
Thanks in advance,
...
Dear all,
I am using JQuery and Aajax, My Ajax.php file has returns the following field into Main File. While I am Click In Mozilla And Chrome , It Working Fine Gives alert, But when I use IE 7 Version 7.0.5730.13 ,It Didnt Supported , Does i Need to do anything on browser side or i have to modify Will u please Help Me in this contex...
A 302 Redirect is being returned after a post of information. This redirect is intended to reload the current page.
This all works fine, but IE adds No-Cache to the header:
Cache-Control: no-cache
We are using Squid to cache our content, and putting this in the header bypasses squid.
As this redirect is used quite often(there is no w...
I have a ASP.NET button on a page that opens a popup window this way:
String cstext1 = "window.open('ReportViewer.aspx');";
ScriptManager.RegisterStartupScript(this.Page, this.Page.GetType(),
Guid.NewGuid().ToString(), cstext1, true);
The ReportViewer.aspx file gets some data, passes it to crystal reports and streams the PDF output ...
Hello,
it seems I have run into a problem with Internet Explorer 7.
I have an html page that has links to files on another server. The server I am linking to checks the referrer of the request and if the referrer is valid, it allows access to the resource. It works fine in firefox 2 and 3 (as the server my html page is located on is a v...
I've done a lot of research on this,but I'm unable to solve this problem. I've got a Div with several Divs within it that I want to hide before switching on a TinyMCE instance.
I'm doing this via jQuery -
$(".drop").hide()
This works fine, and every browser engine except Trident (IE) hides them. If I inspect the elements in IE, th...