internet-explorer-7

IE7 rendering CSS incorrectly

I'm working on a Wordpress site that is not showing quite right in IE7. All other browsers, including IE8 are OK. First bug is in the top menu. IE7 is showing it to be a bit taller than it should be, and the hover images and search box are not aligned properly. 2nd is at the end of the post where additional page numbers are shown. ...

IE7 failing to remove an element according to it's href attribute

Ah, is it ever really over if there's still an IE? Thanks to the invaluable help of Stack Overflowers, I have my jQuery working perfectly in FF, Safari, Chrome & Oprah. Naturally, it fails in IE7, which evidently has trouble href attributes, e.g.: $('li a[href="' + title + '"]').parent().remove(); Can someone shed some light on an a...

'var' is null or not an object

The code works fine in Firefox, but not in IE8. I'm getting an error: 'address' is null or not an object. Have been googling for days and couldn't get a clear answer on how to fix/debug this. Hope stackoverflow.com can help. var latlng = [ { address: new GLatLng(-6.1364941,106.8000411), marker0: myIcon0 }, { address: new GL...

Can someone help with ie6-7?

I created website with fluid css layout: www.gktrade.lt. And he problaly have bugs in design coding, because in ie 6 and ie 7 are very nervous problems with displaying some elements. Can someone help me in resolving these problems? PROBLEM SHOWED - PIC ...

IE7 vs. A Python Pickle Object

I have an issue with IE7 not wanting to pass a pickled object through a ajax call using HTMLTMPL. It works in IE8 (and in compatibility mode) as well as in Firefox. I have pickled an object using the command: newhash['pickled'] = pickle.dumps(hash) Because JS didn't like the newlines, i regex them out using: newhash['pickled'] = re...

IE 7 / Quirks Mode and Background color?

This is going to be a vague and obscure question, which is probably due to the fact that even using IE Web Developer, I have no idea what is going on. I have a utility which I am working on. It's mostly JavaScript, and it has a small floating DIV user interface that shows up on a page. So far, standard stuff. The problem is the backg...

Explorer 7 is stuck on 100% CPU / got stack trace

I surf to a web page (the web page belong to my company...) and my explorer is stuck on 100% (desktop, windows XP, 1.5G, IE7, SP3) I'm not sure I have all the pdb and the information needed but the call stack from analyzed dmp file in dbg is below - does it look familiar msls31!InitGroupChunkExt+0x11a msls31!InitGroupChunkExt+0x25e ...

Why doesn't extjs qtip on combobox show up in internet explorer ?

hi all, I've added an extJS quicktip (qtip) to an extJS combobox and it works well in FF, Chrome, Safari but not in IE7 and IE8. Here is a code snippet: var searchConfig = { store: store, tpl: tpl, hideTrigger: false, minChars: 1, queryDelay: 50, emptyText: OpenLayers.i18n('Geo search.....

Image in Button: Strange space 2.0 (this time IE7)

This is a followup to my previous question. It dealt with a rendering issue in Firefox. After that issue was fixed I obviously tested the design in other browsers. And obviously - how could it be different - I encountered yet another rendering issue, this time in IE7. The former of the above elements is a button containing an img. The...

CSS filter property in IE7 won't close

I am using the ms proprietary css property "filter" to control the opactiy of an element. #square2 { filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=50)"; zoom:1; padding:10px; border:solid 5px #0cc; height:200px; width:400px; background-color:#cc0; color:#c0c; font-size:2em; } The problem...

IE7 window.open when .focus return null

Hi, I'm trying to do something like this win = null; win = window.open('/url/to/link','tab'); win.focus(); but in IE7 it returns me at the line of win.focus(); the error that win is null. How can I solve it? Thanks in advance! ...

Calling a custom FLASH method from IE7 & IE8

I am trying to call a custom method of an embedded flash like so: var flash = navigation_get_flash_movie_object('main'); if (flash) { flash.continentOut(id); } Which works great in Chrome ans Safari, but fails utterly in IE7 & IE8. The browsers throws an error that the object doesn't have such a metho...

IE7 & IE8 error with mootools+json request Access is denied

In mootools I use the Request.JSON(options).get(); to send a request to the server. Options is: {'onSuccess':function(){alert(1)},'url':'https://192.168.12.219/reports/get/favorite/details/?report_id=7'} the url I am in is: https://192.168.12.219/reports/container/ So I do not see any issues with cross domain (this code works perfectl...

Why is my background image not displaying properly in IE7??

Screenshot of the issue: http://cl.ly/2oS3 Webpage in Question: http://cure.org Offending browser: Internet Explorer 7 You'll notice from the screenshot, or if you view this site in IE7, that the background image is not displaying for the content div (#modal-inner-content). Strangely, the image displays in the other divs where it is u...

SVG in IE6/7/8, how to make the SVG element capture mouse event before the other HTML elements

I embed a SVG(with adobe svg viewer) in html and browse in IE, and I add mouse listener on the svg element, but I always catch the event after other HTML elements, how to make the SVG element capture mouse event at first in IE, so that I can decide whether to cancel the event <html> <head> <meta http-equiv="Content-Type" content...

problem with file input in IE 7

I am having problem with <input type="file"/> in IE 7, it is allowing me to type into it. This problem is not present in FF 3.6 and IE 8.0 Is this known problem? And every body handles it with writing java script event to eat-out the key presses as suggested here? ...

Is there a way to dynamically insert an absolutely positioned HTML element in a way that is compatible with IE?

Here's my JavaScript code: function BuildObject(container, index, imgFile, left, top, width, height) { var newImg = document.createElement('img'); newImg.setAttribute("id","d" + index); newImg.setAttribute("src", imgFile); newImg.setAttribute("style", "position:absolute; left:" + left + "px; top:" + top + "px"); newImg.setAttr...

Problem with Internet Explorer 7 and only on server

Hello, I'm making a website and one part of javascript need to disable browser back button and only on some pages that have specific element on it. Here is the script: function recallhashcheck() { setTimeout("checkhashb()",50); } function checkhashb() { if (String(window.location.href).indexOf("#back") != -1) { window.locat...

Bing maps control not rendering properly in IE7 - SharePoint 2010

I've created a SharePoint 2010 WebPart that pulls lat/long info from a list and displays pins in a map. I'm having a problem where the map does not render properly in IE7. Even when I'm not using any pins and just showing a basic map. Here's a screenshot: Screenshot I've simplified the code as much as possible and am still getting th...

jQuery trigger not working in IE. Why?

$('#XynBp0').find('input').each(function(){ if ($(this).attr('value') == 'Cancel'){ $(this).trigger('click'); } }); doesn't work in IE7 ...