internet-explorer

IE image map remains clickable behind another div

I have an Image Map of the United States. When you click on a state, the map fades out and a map of that state appears with an image map of the area codes in the state. In Firefox, Safari, and Chrome, the state map becomes clickable and the United States map becomes unclickable until you close the sate popover. However in Internet Explor...

Browser error in (IE 6)?

hi, i developed a project in that when when i click on any button it giving some message like.. sys.webforms.pagerequestmanagerservererrorexception:An unknown error occurred while processing the request on the status code returned from the server was:12019 it is especially in IE 7. it is working fine in firefox and IE 6. I...

Better png for iexplorer 6 with fireworks instead of pngfix?

Hi, I have made some screenshots of my website, and in internet explorer 6 my website looks crappy (see screenshot) I have heard something about a PNG fix, is a PNG fix the way to solve the crappy look? Do you think this could be helpfull for me? ...

IE Conditional Comments: lt IE 7 = lte IE 6?

Hi! Are there any differences using <!--[if lt IE 7]>...<![endif]--> or <!--[if lte IE 6]>...<![endif]--> ? ...

IE won't start session from an iframe?..

The task was to bypass login form on remote server with a session_id acquired through a call to server's web API. So that user wouldn't have to login twice. Since there's no way to set cookies for different domain. What we came up to was - put a little file on remote server, to which we pass encrypted session_id from hidden iframe and w...

Getting element position in IE versus other browsers

We all know IE6 is difficult. But there seems to be disparate behavior in positioning in later versions of IE as well, when compared with Firefox or other browsers. I have a simple pair of javascript functions which finds the position of an element, and then displays another element in relation to the first element. The idea is to get...

Another Internet Explorer problem... JQuery events

Here is my spaggeti code $("#table_exams tbody tr").click(function () { window.location.hash="#" +$(this).attr("exam_ID"); window.location.href="/medilab/prototypes/exams/edit?examId=" + $(this).attr("exam_ID") +"&referer=" + referer; row_select(this); }); $("#table_exams tbody tr td a").click(function () { window.loc...

Toolbar to modify displayed html/content in IE / Firefox / Chrome.

Hi, I want to create toolbar, whose functionality would be: Whenever the toolbar is "On/Activated", all pages should be parsed by a function, and the modified html should be displayed. [Example: i) There was this skype toolbar that would recognize phone-numbers in pages and automatically add skype links ii) If you have used MacAf...

debugging with internet explorer

I have some code that I thought I had written so that it would play nice on IE. But apparently it does not. I use IE8 for my testing and get quite frustrated with the built-in debugging 'tool'. I found that firebug has a javascript tool that debugs for IE but I have to click it for every page, wait for it to load and then test my scri...

Form submits correctly in Chrome/FF, but fails altogether in IE/Safari

I have a form with a css submit button. When a the submit button is clicked, i call a function that executes: document.forms["request"].onsubmit(); What should happen, then, is that the onsubmit method ought to be triggered. This works properly in Chrome/FF, but for some reason IE/Safari will bypass the onsubmit function and simpl...

Asp.net Google Charts SSL handler for GeoMap

Hi All, I am trying to view Google charts in a site using SSL. Google Charts do not support SSL so if we use the standard charts, we get warning messages. My plan is to create a ASHX handler that is co9ntained in the secure site that will retrieve the content from Google and serve this to the page the user is viewing. Using VS 2008 S...

Javascript: how to tell if a node object has been inserted into a document/another element yet

I'd like to be able to identify whether a given DOM node has been appended/inserted into another node yet, or whether it is fresh out of document.createElement() or similar and has not been placed anywhere. In most browsers just checking the parentNode works. if (!node.parentNode) { // this node is not part of a larger document } H...

How to receive WM_GETMINMAXINFO message in a BHO (C#)

I am trying to build an IE BHO in C#. I would like to receive the WM_GETMINMAXINFO messages sent to the internet explorer window in which my BHO is running. How can this be done? Thanks, simil ...

Do .htc style behaviours still work if javascript is disabled?

Do .htc style behaviours still work if javascript is disabled? I'd like to use whatever:hover to create some css only drodpowns and would like to know if IE will still pay attention to the htc file if js is disabled. ...

(php) How do make my submit button work in ie

My form works in firefox but not ie. I've tried using a hidden text field (fail)... I tried using an image instead of a submit button (fail)... are there any other solutions? Here is my form: <?php print "<table width='522' cellpadding='2' cellspacing='0' border='0'> <tr><td valign='top' width='128'><img src='logo.gif' border='0'></td>...

Jquery and IE problem!

when pressing the submit button text doesn't update..Not even the loading box does appear on IE... in firefox everything works excellent! $(".form_edit_review").live('submit', function(e){ e.preventDefault(); $submittingForm = $(this); loading("Updating..."); postData = $submittingForm.serialize(); $.post('/revie...

IHTMLTxtRange.execCommand("Copy",false,null) fails due to IE settings

We have a .Net application that is used for editing/rendering customized HTML documents. It is hosted in IE using the AxSHDocVw.AxWebBrowser controls. We proceed with navigating to "about:blank" page initially then we change the Document by writing our custom values into it. The problem we are facing is the call to IHTMLTxtRange.execCom...

Programming an IE-Toolbar: Where to save user-related files (IsolatedStorage does not work!)?

Hi, I am programming an IE-Toolbar. Now I have the problem that I want to save some user specific and application specific data First I have tried to use IsolatedStorage but I am only getting a ComException. Which is the recommended way to save some files when programming IE-Toolbars? Thanks in advance for your advice! Best regar...

How Can I Automatically Execute A Link In Internet Explorer

I am trying to create an application to print documents over the web. I have created my document, and made a web page with a meta refresh tag, along the lines of this: <meta http-equiv="refresh" content="3;http://example.com/download.epl2" /> I specify that the document has a content-type of application/x-epl2, and I have associated ...

Javascript window.open firefox/chrome issue

Hi, I've application to open popup window to print page. function printHTML(urlPath) { var printPopUp = window.open(urlPath,null,"height=600,width=777,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes"); printPopUp.print(); } This script is working fine in IE, but in firefox/chrome. print() function is overlapping window.o...