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? ...
I am wondering if there is any work-arounds using javascript or whatever to get IE to show border-radius or gradient background? ...
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 ? ...
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 ...
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...
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...
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...
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...
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...
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...
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! ...
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 ...
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...
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! ...
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...
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. ...
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')" ...
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! ...
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() {...
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. ...
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...