internet-explorer

Is there a way to get border-radius and gradient backgrounds in IE?

I am wondering if there is any work-arounds using javascript or whatever to get IE to show border-radius or gradient background? ...

How to get the server proxy behind the proxy script inside a corporate intranet ?

My IE browser uses an automatic script to get the corporate proxy. How to get the real url for the proxy so that I can configure another software ? ...

All items are not visible on IE toolbar for all resolution

I have created a toolbar with some static labels and buttons.It is looking fine with 1280*768 resolution,but when changing the resolution some of the buttons and labels are not visible. Can anybody tell me how to give positions so that all the items become visible for all possible resolutions. Thanks in advance ...

Webkit and IE breaking jQuery slideUp/Down function. FIXED!

Rephrasing a previous question, been worknig on it a while and have fixed a few issues, but remaining is that some menus don't expand or close when clicked in IE and Webkit browsers. Everything works perfectly fine in FF. And the Chrome Developer tools and IE's tools don't show any errors in the scripts. The FILTER MENY is meant to clos...

Getting a new session in IE using SHDocVw.InternetExplorer

We are using SHDocVw.InternetExplorer in VB.Net to navigate to a web page and insert the login credentials since we have to log into multiple accounts throughout the day. We want to be able to be logged into to multiple accounts in different windows at the same time, but I don't know how to get a new session started. If I log into acco...

How to change an HTML elements style, and then revert it onLoad() with JS?

Hi, I have a problem with a Lightbox type modal window not working properly with IE. I have identified the problem as being due to the style attribute of the hidden image as 'display: none'. This works fine in all other browsers. But for IE, I need to change the value onload to 'display: block' and then straight back to 'display: none...

dropdown menu in IE7,8 needs fixin'

I've had lots of success in getting IE to play nice in the past, but I'm buffaloed here. The dropdown menu is visible and works, but it's having some margin/padding issues and no matter what kind of conditional statement or hack I try to employ, it won't straighten out. Example page: www.erisdesigns.net HTML (links removed so that I c...

IE New Element with Style?

Hi, I have this stylesheet: .pixel{ position: absolute; height: 10px; width: 10px; background-color: #ffcc00; font-size: 0px; } And this javascript: function drawpixel(x,y){ el = document.createElement('div'); el.setAttribute('class','pixel'); el.style.left = x; el.style.top = y; /* IE needs...

ie7 z-index bug... having trouble fixing.

I have 2 columns (several rows) of divs like this: <div class="odd"> <div class="desc"></div> </div> <div class="even"> <div class="desc"></div> </div> the odd and even classes are positioned relatively with z-index of 1 and the desc classes are positioned absolutely with a z-index of 5. Its set so that the desc inside the odd...

cURL Proxy Identification

I was wondering if I can use cURL in my .Net application to authenticate to a proxy and then connect with a browser without the annoying authenticate window popping up?? Thanks! ...

IE Drawing methods in CSS/Javascript

Hi, In <insert non-IE browser here> there is the <canvas> element that allows for doing some fairly advanced drawing. In IE it's possible to draw with <div> elements, but that can get pretty slow if you're doing anything more than a few basic tasks. Is there anything available in IE 5+, in pure HTML/CSS/Javascript, that can allows for ...

Is there a limit to the scroll length of a web page?

I have a client who is building a business application that will be used with IE8 only. One of the requirements is to display all of the data in a single page. I am anticipating this data table to be somewhere between 3K - 10K pixels in length. In the worst case scenarios, more than 25K pixels. What are the technical considerations whe...

Curl Proxy Authentication Persisting

Hi, I was wondering if a I can log into a proxy and authenticate with CURL, but have those credentials persist in a cookie? Thanks! ...

Is it legal to use IE specific metatags in HTML5?

Ive been trying to validate an html5 document with the following 2 lines in the header: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> <meta http-equiv="imagetoolbar" content="no" /> The entire document validates very nicely, but these 2 lines, which are IE specific, render the page invalid. My question: is there a leg...

which is the best javascript library for making canvas compatible with IE

I have an application with heavy use of canvas (dinamyc created, circles, squares, a brush pen, some kind of online microsoft paint). I am searching for the best compatible canvas js library for supporting IE7+. Any suggestions? i tried excanvas.js but I didn't get the same results as i use to see in firefox. ...

Javascript menu behaving poorly in IE

Let's get down to it... site: www.erisdesigns.net html: <div id="wrapper"> <div id="header"> <div id="nav"> <dl class="dropdown"> <dt id="one-ddheader" onmouseover="ddMenu('one',1)" onmouseout="ddMenu('one',-1)"><a class="menu" href="index.htm">Home</a></dt> <dd id="one-ddcontent" onmouseover="cancelHide('one')" ...

Google Docs Drawings and IE

Hello! I am wondering how does SVG work in IE with Google Docs Drawings? Is it flash? Could you please point me to the library they use to add SVG support to IE? Thanks! ...

Can't get jQuery and IE to be friends

Using jQuery and the Cycle plugin. Runs flawless in Safari, Chrome, Firefox, and the latest version of Opera. Won't run in older versions of Opera, and of course, IE. I know its running Java, because its picking up the rollovers. This is driving me batty. Hopefully its something simple. Here's the code... $(document).ready(function() {...

jQuery colorbox plugin IE problem

Hello! I am using the jQuery colorbox plugin. It works perfectly when a run it localhost, but when i deploy it to a server i get the following error in Internet Explorer. could not complete the operation due to the error c00ce514 Has anyone experienced the same problem? Thanks. ...

How to get only one rounded corner with border-radius htc hack and MSIE v:roundrect?

I have a problem with partially rounded corners. See the first working example for most browsers: .box { display: block; width: 100px; height: 100px; border: 1px solid black; background-color: yellow; -moz-border-radius-bottomright: 10px; -webkit-border-bottom-right-radius: 10px; } You can see that only bottom right corn...