I am programming in Microsoft Visual Studio 2008 (ASP.NET, c#).
When I am debugging, after a couple of clicks or actions, Internet Explorer raises an error: "Internet Explorer has encountered a problem and needs to close. We are sorry for the inconvenience."
I use IE7, I uninstalled it, but it also raises an error on IE6.
When I use Moz...
I know there is the bug where absolute elements appear above relative ones. However I am getting the reverse of this issue.
The z-index on the "bottom" element is 1 and has a position:relative assigned. The top element has absolute positioning and a z-index of 99.
This works fine in Firefox, Webkit based browsers and IE8. Any ideas ab...
As you can see if you go to the link below in IE7/AOL, the layout breaks if you resize the window. However, click the products menu tab and it rights itself. I haven't a clue why or how to fix it, and it looks sloppy. On resizing the page, the logo and breadcrumb trail div stay where they ought to be, but my horizontal nav menu and ev...
$('div#Categories > div.categories a#showhide').click(function(){
// Get the subManufacturers list
var subCatList = $(this).parent().find('ul#hiddenSubCategories');
// If collapsed do expand
if (subCatList.css('display') == 'none')
{
subCatList.slideDown('slow');
$(this).f...
I have a site a client is trying to use that doesnt work on their machine using IE7 version 7.0.5730.13CO. We know it works on version 7.0.5730.13 with all. By 'work' I mean it renders different and the javascript functions differently.
I found a site (basically the only site I could find on google about it) that said the CO was for Cor...
I have an application written in PHP/Javascript which uses AJAX extensively. I am concerned that the default caching behaviour for IE7 and IE8 set for our organisation, of 'Automatic' will scupper my application.
There are approximately 1500 users and my IT department say that they won't change the caching option in IE for all those us...
Hi, I thought I'd got this layout working thanks to the wonderful people taking part in stackoverflow, see here. Unfortunately though I've found an issue in IE7 (haven't checked in IE6!) - the footer is overlapping the content
I've put the site up on my development server here. I hope I won't have to start again from scratch to get it t...
I have a submit button with a markup like this:
<li class="button"><div class="button">
<input type="submit" name="sign_in" id="sign_in" value="Prihlásiť" class="input-submit" /></div></li>
I want to hide it so it's not visible.
I did this:
.button, input.input-submit {
height: 0;
line-height: 0;
border: 0;
}
And that ...
I can't get this update script to work in IE. Works fine in every other browser. IE tells me that the update was performed. However, it wasn't. I've no more hair left to pull out..grr. BTW I've tried $.ajax and $.get too..still no luck. I'm thinking it may have something to do with the live click handler. Don't know...I've tried eve...
Hi All,
My site is showing a "Internet Explorer cannot display the webpage" error in the browser when I visit it in IE7 but every other browser is fine.
I have tried from multiple machines and it works fine in IE8 Compatibility mode.
When I visit it in FF, the error console shows.
Error: Permission denied for <http://ad.uk.doubleclic...
Hi All!
This is probably an easy fix, but I'm stumped. Here's the URL: http://urgent.mchenry.edu
First off, underneath the urgent.mchenry.edu text box in the header is an h2 w/ class="caps" and text that says "Official McHenry County College Update". However, it absolutely disappears in IE7. Gone.
I tweaked the ie.css with !important...
Please have a look at my ieissue pic, http://img230.imageshack.us/i/ieissue.gif/
When I float first div to left and set the second div with margin-left:220px. It is working very well with FF and IE8, yet IE6 and 7 not working at all. My second div collapses and sit right at right bottom of frist div. Here is HTML markup:
<ol id="listin...
Hi Guys,
I have a problem in IE with PNG8 images in that it appears with a big dirty black border in the shadowing of my *.png. (Ie7, Ie8)
I am using alphatransparency and basically have shading under my small image. All browsers render this fine - except IE which renders the shading as a black circle ?
I need the image "transparent" ...
On some sites I'm developing, I noticed that the 'Compatability View' button is shown beside the address bar. Yet when I view other websites, this button is not always available to me.
What determines whether or not this button is shown to the user? Does it have to do with the <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7...
I'm having a weird problem with my CSS drop down menu. It shows up, but it's hidden behind another element, and there is a growing space between the list items.
CSS code is pretty standard:
/*CSS Menu*/
#navigation li.menu ul
{
visibility: hidden;
position: absolute;
top: 40px;
right: 5px;
height: 15px;
padding...
The following code renders differently in IE7 and FF3 (NEW CODE POSTED OLD CODE WAS MISLEADING - sorry for confusion)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style>
#boxr1{
background-color:#FFFFFF;
border:3px solid #DDDDCA;
float:ri...
I am using pikachoose plugin for slider. But I changed a few code in the plugin to add links to thumbnails, it works perfectly on firefox, chrome. But when i open the page in ie7 or ie6 the reloads indefinitely. here is the code i added in the plugin
jQuery("#pikame li").each(function(){
var link = jQuery(this).find('a').attr('h...
Hi all,
The BHO which works smoothly on IE7 32bit XP/Vista does not work for IE7 on 64bt XP/Vista. I suspect the problem is with registering the BHO assembly. Can anyone has a good solution to make the BHO work for 64bit platform?
Thanks,
Datte
...
I have an anchor tag with some simple CSS:
div {
background-color: gray; /* for debugging */
}
div a {
display: block;
padding: 6px 4px 6px 7px;
background-color: red; /* for debugging */
}
In Firefox, the anchor (in red) is clickable even outside of the text because of it being display: block with some padding. In IE7, when ...
I can run the following via the address bar in Firefox just fine:
javascript:window.open("http://my.hostname.com/test.php?id=12345", "exportWindow");
When I print_r($_GET), I see the $_GET array with the values I specified in the URL. But when I do so in IE7, it just prints "null" on screen.
EDIT
Turns out that was due to a popup bl...