internet-explorer

Iframe Loading problem.

Hi Everyone. The problem i am facing is .. I am using below code structure for presentation . its jsp page. Usually, during get operation on database records( in hundreds), the web page takes more than 3 seconds to load completely. I have injected an indicator bar ( something like cvi_busy), so that some javascript enable bar would b...

Jquery corner plugin not working in the ie8.

Hi, I'm using corners plugin from here - http://malsup.com/jquery/corner/ It works fine in Chrome and FF, but IE8 says that there is "Unexpected method call or property request jquery.corner.js, string 147 symbol 17. Here is the 147th string from plugin bot ? this.appendChild(d) : this.insertBefore(d, this.firstChild); Here is se code...

Enabling all IE Trusted Sites Settings Through Registry/VBS

I have started a VBS to change all the Internet Explorer settings in Trusted Sites to enable and have had luck seeing the actual value change from whatever is was to 0 to indicate enabled IN THE REGISTRY. Problem is when I open IE settings none of the radio buttons have changed to indicate this change. Does anyone know where I went wrong...

Why do links on my transparent div become unclickable in IE?

Links on my website: http://rnmtest.co.uk/oddfellows/ If you hit 'Dine' you should see a 'Book Now' button. This element is not clickable in IE. The area below it has a semi-transparent png as the background. The content is loaded via jQuery. I have put the anchor within a container div as recommended by other websites, but this has...

Strange Flex Sizing in IE on Server2003

I have a modified version of a flex calendar found Here, and though it looks alright on most computers I've seen, there is a problem on two of the three servers here. Because of the way Citrix is setup here, I need to have it functional on all of the servers. When it loads, everything is stretched out vertically, and the numbers are mi...

IE8 Randomly does not show background images of my divs

I have this annoying problem driving me nuts, IE 8 randomly won't show background images of my divs. One minute it shows, then the next time it won't. Then I have to refresh the page 2-3 times for it to show. All my pages work fine on firefox, chrome. Has anyone faced a similar problem? Any solutions? ...

Not correct page breaks if print from IE COM interface IWebBrowser

I have HTML document to print from embedded COM IWebBrowser object. And although in IE itself it printed with correct page breaks (by page-break-inside in CSS). In my application it make it wrong. I'm already dig it much. Can you suggest something? ...

Browser warning about non secured resources

I know There are other similar links here on stackoverflow, But my question is different, so please don't treat this as duplicate. My page has no external resources and everything is being served from the same server using https, Firefox and chrome is not complaining it and only IE6 and IE7 are complaining. I used HTTPAnalyzer and Fiddl...

How to do namespace aware DOM traversal in IE6..IE8 xml documents?

I am implementing a javascript library that talks to a SOAP webservice. I use the XMLHttpRequest to do requests and receive responses. The SOAP responses rely heavily on multiple namespaces. For all major browsers, except all versions of Internet Explorer, I can use getElementsByTagNameNS() and getAttributeNS() to traverse and parse th...

Edit HTML in IE Developer Toolbar

Is it possible to edit HTML, add nodes, etc. using IE Developer Toolbar? ...

jquery cycle.js pager graphics work in Safari, Firefox, Chrome and Opera but disappear in IE.

Hi, I finally got my site up and running. I am a graphic designer not a programmer so am a newby. Code-wise it may not be the prettiest but it works. If you go to the work section of my site, http://www.maryhutchisondesign.com, the pager (I used a background gif for the a and active state) function works in Safari, Chrome, Firefox and O...

IE login issue with ASP.NET website

I have an ASP.NET webapp (on Win 2k3) that uses forms authentication. For some reason, when a user logs in with IE, the site either freezes or throws an error (such as "Could not load file or assembly 'System.Web.DataVisualization, Version=3.5.0.0"). This doesn't make any sense because I can login with Firefox and Chrome successfully. ...

how can I make my site load as fast in Internet Explorer, as it does in Firefox?

hi, Below is the sample html code i using in my webpage <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> </h...

jQuery - expand/collapse all button, Internet Explorer problems

I have a custom tree structure type display. I have Expand all and Collapse all buttons, which are hooked up with the following simple jQuery. $('#expandAll').click(function() { $("img[src='images/plus.gif']").parent().click(); }); $('#collapseAll').click(function() { $("img[src='images/mi...

Problem with google maps on IE + pop up layer

Hi, I'm using a jQuery plug-in "Boxy" (http://onehackoranother.com/projects/jquery/boxy/) to open a pop-up layer and show a map on it. It works perfectly on all browsers except IE (7 & 8). Some elements like shadow of the marker & infoWindow are transparent, so that you can see background of the page. Here's the test page: http://ko...

Vertical positioning (stacking) of elements incorrect in IE

Hello. I have this simple: <script type="text/javascript"> $("#message").fadeIn("slow"); </script> <div id='message' style="display: none;"> <span>Hey, du har fået +1 points, du har nu <u>2929</u></span> <a href="#" class="close-notify" onclick="closeNotice()">X</a> </div> And i have a design on my site. When i use this, it w...

Super Simple ASP.Net MVC Ajax.ActionLink Example Doesn't Work In IE... But does in Firefox, Chrome, Safari.

I have the following controller: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace MvcApplication1.Controllers { public class TestController : Controller { public ActionResult Test() { return View(); } public string A...

Triggering the refresh event in Internet Explorer

On a dynamic site of mine I faced a problem that consists in the following: In Internet Explorer 6 after changing the size of the div element with the help of JavaScript, its child elements that are 100% in height do not refresh right away (ie. do not stretch to their new size) but only when the parent div is clicked. It seems to me tha...

Form with target="_blank" will produce empty POST data in IE6

I have an iframe containing a form. I want the form to point to a new window when the user submits it. Basically, the following code should do the trick: <?php var_dump($_POST); ?> <form method="post" action="test_post_to_blank.php" target="_blank"> <input type="text" name="test" value="test" /> <input type="submit" /> </form> The pro...

JavaScript Appear in IE?

Hello. I have this ajax_update script that updates file.php every 60 seconds.. Now file.php outputs this after updated a table: <div id="message" style="display: none;" onclick="closeNotice()">this works </div> What I am trying to do is that after file.php have updated a field in the database(points), there will come up a message like...