internet-explorer

I can't clear the SELECT list with "selectedIndex = -1" in Internet Explorer 8

hi :) after an hour of trying to find a solution, I give up (temporarily). "this.selectedIndex = -1" clears all select element just fine in FF and other browsers, but NOT in Internet Explorer 8. any idea how to clear select elements in IE? thanks! ...

Set focus on particular tab in IE and/or FireFox

Hi all, I want to write an application that will monitor the content of all open tabs in IE / FireFox and trigger event once particular data is displayed in the tab. I would like to know if there is an API for IE/FF to set focus on particular TAB, so that once event is triggered I set focus on a relevant tab. Thanks in advance ...

IE add-on/toolbar in c#

Hi, I wish to develop a toolbar for IE using c# and visual studio 2010. I need some useful links related to this topic. Please provide me some useful links. ...

IE Blocking Scripts

IE 8 block my custom scripts every time i run my web site,and i need to click "allow scripts" to run it correctly.Its boring. Any ideas? The script: // JavaScript Document var char=0; var caption = ""; var standby; var msg = "Lorem ipsum dolor sit amet, consenctuinv isdrulix core"; var selectedItem = 1; var lastItem; var fotos ...

How to use jquery code in Internet Explorer?

I put some jquery in my website that makes the text move to the right when the page changes. It works in Firefox and Safari but it doesn't work in Internet Explorer. My url to my website: http://katieduck.com/Courses/Improvisation%20Winter%20Course%20Dartington.html Here is the code that is not working: $(document).ready(function() { ...

Debugging Internet Explorer crashes

I am not interested in some program that I have to pay for, but I really need a way to debug my website in Internet Explorer. The url is http://www.tombarrasso.com/final/ The issue with IE's built in debugger is that my webpage crashes IE if you open three scrollers and click the right arrow. In Safari and Firefox all is well, not terr...

How do I stop IE8 session sharing?

Hi, I'd like to stop IE8 from sharing my sessions in one of two ways (or both if possible): Through configuring the browser to always do this (so I can force my users to configure their browsers in this way). Through code in my web application. Thanks. ...

jQuery .find() not working in IE

I have a function trying to run this: if ( action=='fadeIn' ) { if ( $( this ).css( 'position' ) == "static" ) { $( this ).css( {position: 'relative'} ); } $( this ).append( '<span class="bg_fade">' ) } var fader = $( this ).find( '.bg_fade' ); alert(fader.attr('class')); It works fine in Firefox, but in IE, the alert re...

How to disable cache in InternetExplorer 8

How can I disable cache in IE8 ? We are doing Javascript development and testing it in IE8, but we have to clear the cache every time we make changes to the Javascript files. ...

Flash player inside a div is moving the whole page wrapper down in IE (why?)

I placed the flash player using: position: absolute; top: 20; right: 40; in the div around it. css: #page { position: relative; } #flashplayer { position: absolute; top: 10px; right: 30px; } (as you can see #page is relative) html: <div id="page"> <div id="flashplayer"> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-4445535400...

Bizarre Bug with our Rails app in IE

We're experiencing a really bizarre bug in our Rails 2.3.4 app. This bug only happens in Internet Explorer (7 and 8). Here's what happens: A new customer creates an account at https://domain.com/signup/free (notice no subdomain) Their account is identified by a subdomain like "example.domain.com" After signing up, they get a welcome s...

How do I stop internet explorer's propriety gradient filter from cutting off content that should overflow?

I'm using the internet explorer gradient filter in my CSS. It was all going well until I noticed that images that are supposed to extend beyond their containers overflow:visible; are getting clipped as though the container was set to overflow:hidden; I have no idea why this would happen, or how to fix it. Can anyone help? I'm looking ...

WMF image data validation?

There is an image capturing device which gives its output in wmf. This output is stored in the database directly. We have cases where at times some of these images do not appear on a web page in IE. But if we right click on the page we are able to save the image on to the hard disk; meaning the image does exist on the page, but does not ...

Json problem with Page Method call on IE 8.

I have the following code that populates a select element with values from an ajax call, via a Page Method. In FF, the code works perfectly, in IE8 I get the error: 'ResourceList[...].id' is null or not an object. What can I look at here? function readShift(jsonString) { var shiftInfo = Sys.Serialization.JavaScriptSerializ...

IE 7 activex object (or xmlhttprequest?) open method using POST takes 20-30 seconds to return

i have a problem that only shows itself in IE7. its a simple ajax call. i got my object (accounting for the browser) so in 7 i SHOULD have an ActiveXObject. when i call open with POST, it takes 20-30 seconds to return. i am using a TON of GET calls to populate information and all of these work (finally, after some bug fixing), but i am N...

The columns (divs) with the play button inside them (img) are getting stretching their height.

The columns with the play button are stretching vertically in IE. Here is the link: http://ada.kiexpro.com/test2/news.html html: <table border="1"> <tr><td><a href="http://www.ntdtv.com/xtr/b5/2009/09/28/a354615.html#video" target="_blank"> <li>天國樂團訪印度佛教聖地Nagpur <span>2009.09.28</span><img src="images/play.gif" width="16" height=...

Internet Explorer 8 - Div disappears on resize.

I have a page which works fine in Firefox and Chrome. I.E. 8 however decides to not show a div when the browser is resized. Most of the page looks fine, but the div I am using for the content does not and just disappears when I resize I.E. <div id="wrapper"> <div id="innerWrapper" style="width:215px;"> <div id="mainColumn" st...

Drop-down menu disappearing in Internet Explorer only with slideshow

I'm hoping someone can see what I'm not seeing here: http://bit.ly/crosschurch The horizontal menu at the top has drop-down items, and it works fine in other browsers on this page, and all browsers on other pages. But in Internet Explorer, on this page with the slideshow, the menu disappears unless you move really fast. I've tried di...

How can I force Javascript garbage collection in IE? IE is acting very slow after AJAX calls & DOM manipulation

I have a page with chained drop-downs. Choosing an option from the first select populates the second, and choosing an option from the second select returns a table of matching results using the innerHtml function on an empty div on the page. The problem is, once I've made my selections and a considerable amount of data is brought onto ...

Applet preventing focus in IE

I've tried to implement a cursor focus on an input area and IE has given my a lot of headaches. I've tried things along the line of (changing the timeout too, to large numbers): setTimeout(function() { document.getElementById('myInput').focus(); }, 10); and it won't work. I've noticed that I have an applet on the page as well, and whe...