internet-explorer

Why doesn't this clone work with ie but it does with firefox?

I have a vimeo flash object hidden like so CSS: #banner-vid-link div.object, #mainVideo, #blackSheet { display: none; } HTML: <div id="banner-vid-link"> <img src="thumbnail.png" /><br />Watch This! <div class="object"> <object width="700" height="394"><youget the idea /></object> </div> </div> And when you ...

My conditional css stylesheets for IE work when I test the pages locally but are not recognized once I upload the pages to my website

Hi, I'm using the IE recognized conditional statement to use an IE specific stylesheet for IE browsers: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Touringhouse</title> <link type="text/css" rel="st...

jQuery - IE6,7 not suporting $(this) ?

Hey, I have a code, that works in all modern browsers, but not in IE 6,7. $('.cat1').toggle(function() { $(this).parent('li').next('ul').slideUp(); $(this).css('background-position', '0px 0px'); return false; }, function() { $(this).parent('li').next('ul').slideDown(); $(this).css('background-position', '-210px...

Get the status of IE popupwidow created from a c# application

Hi I have created an internet explorer toolbar using C#. On clicking on that toolbar button , I want to open internet explorer popup window. I have used web browser control with in the form and its invoke script method. With in the java script I have used window.open method to open the new window popup. I need to identify whether the p...

How to enable multiple selection for text in internet explorer?

Hi, How can I enable discontinuous multiple text selection in Internet Explorer? I tried IDM_MULTIPLESELECTION but that seems only to work for objects in edit mode and not for text. FF3 seems to have multiple selection enabled by default and works by clicking the ctrl key. I am using IE8. A code sample in any language is fine. Any ...

Manifest issue with IE and activeX application

hi all, I'm facing the following configuration: IE loads c++ activeX (LOADER application that loads c# COM ActiveX (EXECUTOR) that using reflection starts c# UI application (the main application) that uses some legacy c++ COM dlls. I'm trying to avoid registration of these legacy c++ COM (I want to use manifest). But with no success. ...

IE8 deletes CSS properties

Hi there, I finally have finished a Web Application and now I have to make it compatible with Internet Explorer (at least 8). It's almost complete now except for one place, where IE8 apparently deletes some CSS formatting I have defined. I uploaded some Screenshots of the generating Perl Code, how Firefox (+ Firebug) renders it and how...

My Text box is not rendering the text inside it

I have a text box where there is a initial text has been set in the text box of asp.net website. But after rendering the web page the text box is not showing initial text in the text box. Code for text box <td class="textFieldColumn" style="height:16px!important;"> <asp:TextBox ID="txtUserID" text="Enter User id.." runat="server" ...

Getting Google Chrome to Ignore IE Javascript

I'm creating a slideshow using javascript that fades images. Awhile back, I discovered that to change the opacity of an image, I have to use a different API, depending on whether the page is viewed in Firefox or IE. Firefox: img.style.opacity = [value 0 to 1]; IE: img.style.filter="progid:DXImageTransform.Microsoft.Alpha(opacity= [...

Rendering error with a list on IE8, 7, 6

What is the trick to getting IE to display a <ul>? I am working on a page with a php extension. I have a simple list. <ul> <li>Stuff one</li> <li>stuff two</li> <li>stuff three</li> <li>stuff four</li> </ul> While on Safari and Firefox I get a list that renders properly, on IE it just displays a paragraph. I have ...

Keyboard options for FileUpload in IE differnt from Firefox?

I am using Apache's File Upload. Key board "tab" and then "enter" on the Browse button of File Upload does not open an option to browse in IE, but submits the form. But the space bar works fine. In firefox, it works fine, with "enter" it opens an option to browse. Can anyone plesae let me know why does this happen? Or am I supposed to sp...

Internet Explorer XHR not sending

I'm working on a CakePHP application, running on IIS, using jQuery to handle AJAX requests. (As per usual) everything is working fine in Firefox, but in Internet Explorer (7, at least) my AJAX pagination links fail. I click the link and get this message: This page is accessing information that is not under its control. This poses a ...

Selecting grandparent div with jQuery doesn't work in IE/Chrome

I have the following jQuery function: function GetGrandparentDiv(item) { return item.parents('div:eq(1)'); } Which is called by the following function: $(".addset").click(function(e){ e.preventDefault(); var addstr = "<span class='setrow'>random html</span>"; var gp = GetGrandparentDiv($(this)); alert(gp.attr...

How do I maintain a designMode selection in IE

If click out of a designMode iframe, IE loses the selection within the iframe. Except if the clicked element is an input (which i think is stupid). How do i maintain the selection natively or with minimum code...? (I need to use minimum code here as my range processing is extensive and updating tool bars is extensive) Example: http://ww...

can p3p be used to allow access to iframe dom in IE?

When creating iFrame dynamically (javascript) on IE and trying to access its document, access denied error is issued (because its source is not on the same domain as the containing html). I think I read somewhere that 3p3 header can lower this restriction (usually it is used for 3rd party cookies). Can anyone explain how to do it for dy...

How can I prevent the backspace key from navigating back?

On IE I can do this with the (terribly non-standard, but working) jQuery if ($.browser.msie) $(document).keydown(function(e) { if (e.keyCode == 8) window.event.keyCode = 0;}); But is it possible to do in a way which works on Firefox, or in a cross-browser way for a bonus? For the record: $(document).keydown(function(e) { if (e.k...

In IE lightbox doesn't show if a synchronous ajax request is made

I've got the following code that shows a lightbox 'please wait' box, then does a synchronous ajax request which removes the lightbox when it finishes. Works fine everywhere else, but in IE, the lightbox doesn't show. The Ajax request works fine, but it just seems to ignore the lightbox. The showLightbox function just does that, show a...

HTML/CSS: Table cell with image rendered too large in IE

I have the following simple table to reproduce the issue: <TABLE> <TR> <TD style="border: black solid 1px; width:24px; height:68px; margin:0px; padding:0px" > <IMG style="width: 24px; height: 68px; margin:0px; padding:0px; border:none" src="Image24x68.png"> </TD> </TR> </TABLE> The image is actually 24x8...

overriding GetSecurityId in IInternetSecurityManager

I have built an executable which launches a dialog box in which is embedded the IE web browser active-x control (C++). I want this control to allow cross site scripting. One frame on the web page loads local html, the other loads from a server. I then want the server page to call a javascript function that lives in the local html file...

IE HTML radio change event

I have a project that requires some values to get updated with JavaScript from an HTML radio change event. For some reason in IE, it seems that the onchange event isn't called until the radio has lost focus. Unfortunately due to the way the code is setup, I can't use the click event and have to use the change event. Does anyone know o...