My client asked me (a js client side programmer) to change the order of the options so that their company's option appears at the top of a select box when the page loads.
The following code works in FF but fails in IE7 when I try to swap two options:
function load{
var shippingLocation = document.getElementById("location");
var ...
I am looking for a way to mimic Windows Live functionality on dragging files from windows explorer onto a web page in a browser and capturing the filename. I think this functionality is through the following control
Microsoft.Live.Folders.RichUpload.UploadControl
Any pointers in the right direction to take care of a client
...
Hello,
I'm creating a website for my church and I'm having problems making it display right in IE. It seems that my div "sidebox" is having its background position overridden by the "margin: 0 auto;" as the background displays centered rather than on the right, which is shifting the site to the right.
Here's the code:
.sidebox {
marg...
I'm doing some tests on a Windows Server 2008.
When I try to access an URL (for example the TFS webservice URL) for test purposes, it automatically uses my Windows identity (ie Administrator)
How can I force IE to display the login popup so that I can try to log in with a "standard" user?
...
I'm experiencing something really strange!
I have a div that I'm hiding with JS (jQuery).
Like this:
$('#myDiv').hide();
Then when I make a fadeIn like this:
$("#myDiv").fadeIn('slow');
then the text loses ClearType in IE but not in FF. If I go with toggle insted of fadeIn, then it's all fine.
What is IE up to and is there any so...
I need to retrieve, in my program, a list of currently installed Internet Explorer add-ons (Browser Helper Objects), and if possible their enabled/disabled status.
Since anti-spyware programs can get this list from somewhere, is there a simple way to request this list programatically?
EDIT:
Thanks to @Stefan, who pointed me to the righ...
I'm trying to make a horizontal list of links with <ul> wherein all <a> is display:block and has a height. In IE6, it keeps getting 100% width after I set a height for <a>, making it a vertical list.
HTML:
<ul id="header">
<li><a href="#"><span>ST.KILDA ROAD MEDICAL CENTRE</span></a></li>
<li><a href="#"><span>Public Health M...
I have a file input element that needs to be cloned after the user has browsed and selected a file to upload. I started by using obj.cloneNode() and everything worked fine, that is until I tried using it in IE.
I've since tried using jQuery's clone method as follows:
var tmp = jQuery('#categoryImageFileInput_'+id).clone();
var clone =...
I've finally completed a working version of my first ever CSS-supported site (thanks to some very helpful suggestions on this forum) and have validated the CSS. Before I go out and find (buy?) another machine (I'm a Mac) to check IE on, is it remotely possible that the valid CSS is really truly valid on IE as well as Firefox, Safari tha...
So IE (6, at least) won't help me with $_SERVER["HTTP_REFERER"] that I request with PHP.
But I'm new to Javascript and have just used a little routine in a pop-up to refresh the page from which the popup was called (i.e. parent). Works beautifully in FireFox, Safari, etc.
There's NO security issue - I'd just like to the user loaded ...
Hi,
I had created a BHO application with the help of
http://www.codeproject.com/KB/cs/Attach_BHO_with_C_.aspx?fid=447248&df=90&mpp=25&noise=3&sort=Position&view=Quick&fr=51&select=2421069
If I Build the source code obtained in above article, the CPU usage is increased to 70-80%
How can I reduce this?
...
Hi folks,
Humbly asking for help with (of course) IE.
I have a div that is a simple background color block (#greenback) and it contains two other divs.
The first (#billboard) is some centered text and the second (#picright) holds an image. They are arranged next to each other, text on left, image on right.
Looks ok in most FF etc but ...
We have a number of PDFs hosted using Lighttpd but when they are downloaded in IE (7.0.5730.13), the file download hangs at the end and does not complete. For example
http://static.vouchercodes.co.uk/printable/87-burger-king-voucher.pdf
http://static.vouchercodes.co.uk/printable/10-gbk.pdf
This works fine in Firefox (3.0.5) both on OS...
Im trying to get pretty.js to prettify code in CODE tags, using this js:
onload_functions.push(function() {
var node_list=document.getElementsByTagName('code');
for (i=0; i < node_list.length; i++) {
node_list[i].setAttribute('class','prettyprint');
}
prettyPrint();
});
This works fine for Firefox :) but IE's havi...
We are working on IE only web application that is run as a pop up window - without any toolbars. Is there a way to invoke IE developer's toolbar besides using a button on the IE toolbar, since it is not visible?
Thanks!
...
I'm going to be brief because I'm short on time, so I apologize if this isn't as detailed as I'd like it to be.
I have some code:
print("<a href='#'>Some text<sup>®</sup> some more text</a>");
In FF, this works like I would like, the link as a whole is underlined. However in IE, the link is underlined except under the where it l...
I have a very simple HTML page (validates as XHTML 1.0 Strict):
<div class="news-result">
<h2><a href="#">Title</a></h2><span class="date">(1-1-2009)</span>
<p>Some text...</p>
</div>
with the following CSS:
.news-result {
overflow: hidden;
padding: 30px 0 20px;
}
.news-result h2 {
float: left;
margin: 0 10px...
I have two copies of IE7, same exact security settings and same exact builds. Two different machines, both running WinXP. In my application, my cookie headers are being properly sent to the server on one version of IE. No other cookies are being sent in another version.
What are some points to troubleshoot in this scenario?
...
I have a table of paged data, along with a dynamically created pager (server-side AJAX call, apply returned HTML to the innerHTML of a div).
When I click next page on my pager, an AJAX call is sent to the server to retrieve the next set of data, which is returned as a string of HTML. I parse the HTML and render the new table rows. I als...
The JavaScript security settings on Internet Explorer for my customers disallow using window.external.AddFavorite, and it generates (best case) an error in the status bar when the users click the "Add Bookmark" link on my website. Is there a way to explicitly request permission to use the window.external.AddFavorite method from the user...