internet-explorer

IE8 - CSS overflow hidden, fix causes further problems with jquery

Problem part 1: Basically I have the age-old IE problem of overflow: hidden; not working in IE. The fix (which does work, admittedly) is to also add "position: relative;" to the element/parent; however this causes a problem for me. Firstly I want to know if there's another way without appending position relative. If this is the only ...

Border color IE vs Firefox

On my site cryptscript the border color is darker in ie than in Firefox and I can't seem to fix it? ...

ILaunchURL in 64bit

http://msdn.microsoft.com/en-us/library/aa767962(VS.85).aspx Is there a way to launch 64bit IE by using IELaunchUrl? I have IELaunchUrl defined as [DllImport("ieframe.dll", ExactSpelling = true, CharSet = CharSet.Unicode)] public static extern int IELaunchURL( String url, out PROCESS_INFORMATION pi, ...

How do you detect window.open(...) from within an HTA?

I am developing an HTA that will run as a kiosk in our reception area. This kiosk can display web-pages that launch new windows using the window.open() method. What I want to do is handle window.open() from within my HTA, so instead of spawning an Internet Explorer window, the new window will appear in a floating iframe inside the HTA. ...

url in window.open is not working in IE.

UPDATED I have a page where i upload an image to crop which opens a window with the required functionality, it works absolutely fine as per below given script, but it doesn't work with IE <script> window.open('http://mymachine/mysite/crop.php?bgimagecode1=1281439586.jpg&amp;x=728&amp;y=364&amp;id=30&amp;bannersize=1x2&amp;osCsid=','myw...

Round Corners in IE using ui-corner-all

I was trying to get rounded corners in IE7 using jQuery's "ui-corner-all" class. This is how my page looks like. <html> <head> <script language="javascript" type="text/javascript" src="jquery.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function() { $('#btnSearch').addClass("ui-corn...

How do I programatically click on a bookmarklet that opens a Javascript window and verify the window's contents?

I want to open a specific URL(relatively easy to achieve in Watir/WatiN), then click on a bookmark/bookmarklet which in turn opens a Javascript window in which certain links then appear. I want to be able to verify links' wording and URLs. The "problem" is having to use IE (7 & 8) and not Firefox which prevents me from using Selenium ID...

Why doesn't this page redirect work in IE?

I check for a session variable in my asp.net page and redirect to my default page. if (Session["OrgId"] != null) { // some logic } else { Response.Redirect("../Default.aspx?Sid=1", false); } and in my default.aspx page i ve done this, Int64 id = GetId(Request.RawUrl.ToString()); if (id == 1) { ...

Force IE compatibility mode off in IE using tags

I am doing work for a client who forces compatibility mode on all intranet sites. I was wondering if there is a tag I can put into mug HTML that forces comparability mode off. ...

IE Never finishes loading SharePoint page when JavaScript is disabled

I am working on a solution that loads SharePoint pages in a copy of IE. When the page finishes loading an event is triggered that executes some code in the application that wraps IE. Now this all works fine and well, until JavaScript is turned off in the browser, a requirement for this solution (Don't ask). Naturally I don't expect the ...

IE7 CSS Z-Index issue in quirks mode

I've been trying to figure this out for over a day now, so any help would be appreciated. I have a Suckerfish menu that's made up of ul/li's. I'm trying to add some top down scroll indicators to my menu. In my example I have a blue and green indicator which are just placed inside the menu for now. These indicators are just another LI ins...

.change() would not work in IE for <select> tags

I have such a combo box in my site and I want it to load some content as soon as it's changed by the user. It's a simple one having each State of my country, check it out: http://jsfiddle.net/tzvyX/ It happens that in IE, the .change() method doesn't work and I don't know what to do to fix it. maybe some other event listener? ...

Image centered in Firefox but not IE

Can anyone tell me why the logo on this page is not centering in IE? http://www.cateringvisions.com Thanks! ...

Making graphs in IE under Windows CE 6.0

There are a whole lot of graphing APIs, but I haven't been able to find any that work with a device running Windows CE. The reason I'm asking is because I've been told that we are going to try to develop a user interface for our embedded device that is entirely web based. This is so that we don't have to make one interface for people us...

does IE8 support out-of-the-box in 'localStorage'

I am trying to use html5 feature 'localStorage' according to this blog it can be done using IE8 however when I am trying use it I get javascript error the 'localStorage is null or not an object' So my question- can it be used by IE8 out-of-the-box or not? Here is my code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...

IE vs Firefox opening relative links?

I'm currently working on Documentation for a system and one of the objectives is to create an all encompassing WebHelp document that I can use relative links to other documents to in our file system. The problem is that the relative links will not open on IE while they open fine on FireFox. The most frustrating part is that if I copy th...

why does this jQuery code only work in FireFox?

Hey guys, I've been having some issues with a pagination widget that I wrote in jQuery. Basically as the slideshow switches images and captions the pagination shifts moves an indicator along. The code works perfectly in FireFox but not in chrome, IE, Opera. Here's the jQuery. function autoSlideshow(mode) { var currentImage = $('...

white-space: nowrap; applied to li. doesn't work in IE.

http://forumgallery.rollinleonard.com/artists.php white-space: nowrap; applied to li. gets very screwy in IE. Instead of each .li item staying together and moving to the next line the whole thing becomes one super long line. Here is the relevant part of the css (text.css) .artistlist { margin: 0px; padding: 0; } li.artist...

best browser for developer Firefox or Internet explorer.

Which browser suits best from developers point of view,Firefox or Internet explorer. ...

window.attachEvent doesn't work in IE

Hello! I want to display picture in a new window. For that I wrote javascript function that opens new window. I open window with some fixed size (for example 500 x 500). But I want to resize my window to picture size. For that I attach event to this newly created window. Here is only code for IE because in FF and Chrome all works. var ...