Hi,
I am having a problem where 2 IE8 (with the same version number 8.0.6001.18702) behave differently in processing a webpage.
The misbehaving one is of course used by the client :) , and I just cannot reproduce it on my machine or on our test machine. It is all good on Firefox btw.
How can I narrow down what is causing this problem?
...
I have a BHO, which i can see it as enabled in Add On's list. But it does not get loaded when i start my IE on the Win2k8 R2 machines(64 bit).
I have disabled IE Enhanced security as well but no help. The same BHO gets loaded in other machines.
The registry details under (HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\Curre...
I am loading feed-items into a ul using this jQuery .ajax() call, which I basically lifted from http://www.makemineatriple.com/2007/10/bbcnewsticker/
var timestamp = true; //set whether timestamp is displayed in
$.ajax({
type: "GET",
url: "sample-feed.xml",
dataType: "xml",
succe...
I'm currently trying to do the following:
Trigger: click on a name in a select list.
Action : open mailto-link in current window, thus opening an email client.
$(document).ready(function(){
// Define click-event
$('option').click(function(){
var mail = $(this).attr('value');
window.open('mailto:'+mail, '_self');
});
...
I have a function that, when the user selects one or more items, it moves those items to the top of the list box (still selected) and scrolls to the top so they're visible. It works in all major browsers that I've tested. The problem comes when I have this function sort a listbox inside of a table cell. When I do that and use IE8, it ...
I'm trying to debug the following block of Javascript code to see what the issue is. I'm getting an error that says "Member not found" on the line constructor = function() { in the extend:function() method.
I'm not very good with Javascript, and I didn't write this, so I'm kind of lost on what the issue is. The error only occurs in IE8,...
I have LI that I want to fade out and back in. Within the list item I have some text. This text is positioned absolutely within the LI.
The catch is that in IE8 (IE6 and 7 seem fine) I can get everything to fade except the text:
http://jsbin.com/esamu/13
If I remove the absolute positioning on the text element (in this case, a P), IE8...
Hey all..
I noticed that an application I am maintaining was giving me a javascript error in IE8 and FF. The script was trying to get a collection of frame elements:
document.frames
This always returned 'undefined'. I placed a watch on the document object and noticed that this collection does not seem to be a member of the document o...
Hello...
In IE8 this
input.attr("name","exam.exam_Normal['" +normal_id_unique + "'].boolean_v");
Outputs this only in IE8....
<input propdescname="exam.exam_Normal['1'].boolean_v" type="hidden" value="0"/>
WHY WHY?? Why everywhere are problems... why
...
Well hi, guess what, I have an IE positioning issue! This is in 8, so god know what's going on in the other versions (checking later)
Both the boxes call the same class, why is IE being so difficult?
Here's how it's meant to look:
And here's how it does look:
CSS: (removed comments for ease of reading)
div .roundbigboxkunde {
...
I'm making a bookmarklet, but I've encountered some wierd behaviour in IE8. The code causing the problem is this:
var els = document.getElementById("my_id").getElementsByTagName("*");
for(var i in els)
{
alert(i+","+els[i])
}
The first thing that is alerted is "length, n". This isn't the case in chrome: just in IE8.
Interestingly...
I've uploaded a test file here:
http://dl.dropbox.com/u/2201804/IE8test.html
If you click on the "Click me" divs, you'll see the "Feedback" divs appear using slideDown(). Clicking a "Click me" in another box slides the currently showing feedback up and slides down the appropriate feedback.
In IE8, after the slideUp()/slideDown() actio...
By default IE8 forces intranet websites into compatibility mode. I tried changing the meta header to IE8, but it doesn't acknowledge the meta header and just uses the browser setting. Does anyone know how to disable this?
...
I have been looking for a solution to an IE8 issue regarding padding on a div with overflow: auto. When the content is scrollable IE8 doesn't seem to honour the bottom padding. An example of the issue can be seen here http://jsfiddle.net/Gbp5U/ (issue only appears in IE8)
In IE8 when the content is scrolled to the bottom there is a bott...
We are using Ext JS for an application in work, building a custom theme for it. We currently have a dark colour scheme including menus with dark backgrounds. In some of the menus some of the links are disabled at certain points, which all perfectly. However IE8 seems to add a sort of white text shadow, which I am sure is normally fine bu...
Dear colleagues!
Please help me understand what I’m doing wrong!
I have a problem when I programmatically activate my IE toolbar from other program.
Making it following the instruction given at Microsoft support site (http://support.microsoft.com/kb/q255920/):
SHDocVw::IWebBrowser2Ptr pIE;
HRESULT hr = ::CoCreateInstance(CLSI...
Hopefully this question isn't as subjective as I think it may be.
I have an Intranet application which needs to work with IE8 as the enterprise is replacing IE6 as the standard browser.
Our testing team found that it did not work in IE8, little did they know that it actually did. Their browsers were set to run IE8 in compatibility mod...
I don't want to have to add the EmulateIE7 meta tag for every page if I dont have to. My default.htm is a FRAMESET page so can I just add the meta tag to my default FRAMESET page and my site stay in IE=EmulateIE7 mode for each new page that loads in the frameset?
Thanks
...
No functions get called, and I can't even alert.
It is just an external javascript file.
However, everything works on Firefox, Chrome and IE8.
I am using Django/python backened to serve this file.
Is this a known bug from IE7?
...
I have an on-screen keyboard in order to provide a safer input for passwords.
The keyboard itself is placed like this:
<div class="teclado_grafico" id="teclado_grafico">
<a class="tecla_teclado" onmousedown="teclaAction( this, 'caja_selector'); return false" style="top: 0px; left: 0px;">Q</a>
<a class="tecla_teclado" onmoused...