internet-explorer

Need to refresh a single ie7 web tab from command line...

Hi, I need to create a batch file that will stop a process and then refresh a defined tab in internet explorer 7. Just need some help/pointers on the tab refresh part or if it's even possible... I don't want IE to open another tab, and another browser is not an option as the web based program is only compatible with IE. Any ideas? I've...

Access is Denied Exception when calling JavaScript function from Java in IE

I am getting Access Denied exception when I am calling a Java Script Function from Java Applet only in IE. ( modified my original question with updated information.) Here is my HTML code <script type="text/javascript"> function uploadComplete() { alert("in Upload Complete"); ju.doneUpload(true); } </script> ju is ...

IE8 and border css property on select menus

I am getting a really strange behaviour when viewing a very simple piece of HTML in IE, served up by IIS. I am at a loss to explain this... Take the following html <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; <html> <head> <style> .iWantaBorder { border:red so...

Getting 500 error on webpage only for one computer

I am running a site on php with a mysql backend. Things have been fine but suddenly one users account started getting a 500 error. Each user has his own profile when they log into the any box so his internet explorer settings are the same no matter what box he logs on to. Does anyone know if this could be an internet explorer setting cau...

Does internet Explorer 7 honour the Vary header by caching properly?

I'm using a technique similar to Rick Strahls example, but have notcied using google's speed tracer that Resource Caching : @10.88s - The following resources specify a "Vary" header that disables caching in most versions of Internet Explorer. Fix or remove the "Vary" header for the following resources: ... The question is Which ve...

aardvark bookmarklet internet explorer

Hi, I used to use the aardvark bookmarklet http://karmatics.com/aardvark/bookmarklet.html in Internet Explorer, however I cannot now get it to load. I've tried ie6,7 and 8. Does anyone know why this no longer works? Does anyone know how to make this work in IE? Cheers Frankie B ...

IE not firing (window|document).onclick event when clicking on a child iFrame

I've got a simple dropdown menu that I want to hide whenever you click anywhere on the page (not on the menu). This works fine in FF and IE until you add iFrames into the page. The menu doesn't hide in IE when you click on the iFrame. Works fine in FireFox. I tried using document.onclick and window.onclick. Any ideas? Edit: I wou...

Validating Problem - Doesn't work in IE

I'm using following Code to add status-messages via PHP & Javascript (Ajax): $(document).ready(function(){ $("form#status_form").submit(function(){ var s_autor = $('#s_autor').attr('value'); var s_status = $('#s_status').attr('value'); $.ajax({ type: "POST", url: "/request.php", data: "s_autor="+ s_a...

Problem with PNG Fix for 2 overlapping images

Hi I am using PNG FIx module in Drupal for 2 overlapping images on which I have applied some jquery effect. The Problem is that when I use the PNG fix module then in IE I start seeing 2 images placed side by side instead of overlapping each other. Is there any solution to this problem ? Please Suggest. Thanks ...

IE not letting flash stream audio

This problem is happening is both IE8 and IE7. I have a small swf compiled with flex. It's basically just a wrapper around audio streaming functionality. All the controls and such are in html with javascript. I load the swf using swfobject's "static" method. This works great in Firefox and Chrome. In IE, the swf loads correctly, but as ...

Web sites load fine in Firefox but not it IE8

When I test my site in Fox it works fine, when i click the Nav bar the pages change is smooth, but when I test it in IE8 the pages seems to struggle. When I click on a page the change takes 3 seconds and it's like it shuts down than reloads. It like it blinks when it reloads so the page is forcing to open, and the back ground changes w...

How do I disable the image toolbar for images in IE?

When hovering the mouse over images IE pops up a little toolbar that suggests saving, printing and so on. Here's a pic of this: I need to accomplish this with JavaScript. ...

"Access is denied" JavaScript error when trying to access the document object of a programmatically-created <iframe> (IE-only)

I have project in which I need to create an <iframe> element using JavaScript and append it to the DOM. After that, I need to insert some content into the <iframe>. It's a widget that will be embedded in third-party websites. I don't set the "src" attribute of the <iframe> since I don't want to load a page; rather, it is used to isolate...

HTTPLiveHeaders equivalent for IE?

Can anyone let me know if there is any equivalent for Internet explorer like HTTPLiveheader addon for firefox which captures and records all the HTTPrequests etc? I have an windows application that opens an instance of IE and then makes a few requests, authenticates, uploads files etc. I want to monitor all these. Thanks, Pavan ...

Saving webpage content using webbrowser IHTMLDocument interface

Hi, We need to save the complete web page including img, javascript, css and html using ATL webbrowser (IHTMLDocument) control, using IHTMLDocument2::get_all() method we have saved .html file but now how do we get external files such as .css, javascript and image files please help us with methods that internet explorer or firefox used...

IE ignores font-size for HTML SUB elements?

I'm usually well-versed in CSS but this issue surprised me... I have some simple markup consisting of some text and a sub text: <p>I am a main text<sub>This is a sub text</sub></p> I have set the CSS so that by default, all elements get a font-size of 12px. However, for sub elements I am overruling this: sub { color:#999; font-size:...

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> Does it really render page like IE7 in IE8?

Will i get same result in IE7 and IE8 after using this <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> ? Has anyone tested it? ...

Custom HTML Attributes,: Firefox vs. IE

What changes do I have to make to the following simple HTML page to get Firefox to read and set a custom attribute as it does in IE? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta content="text/html;...

Is Javascript parsed/interpreted on load? (IE)

I Know, for instance, that when Chrome downloads a Javascript file, it is interpreted and JITed. My question is, when IE6,7,8, first download a Javascript file, is the entire thing parsed and interpreted? My understanding was that only top level function signatures and anything executed in the global scope was parsed on load. And then ...

IE has empty document.referrer after a location.replace

I've got a site that does a complex search and has a "loading" page. On the loading page we use: <body onload="window.location.replace('results_page.php');" > Or: <body onload="window.location = 'results_page.php';" > The only difference between the two option above are that location.replace() ignores the page in the browser's histo...