I have two divs inside a container, the first one has absolute positioning. In ie7, the second div apparently ignores the top margin. Padding seems to work fine, but for visual reasons I have to use margin.
I know the culprit is the absolute positioned div because if i remove it the following div works fine.
This is only happening in i...
MessageBox.Show (.NET framework) or MessageBox (e.g. VBA) opens a modal message box from the window of the current application.
My questions are:
If I do not specify the caption (i.e. what appears in the top-left hand corner) of the message box in the arguments, does the default vary according to the application being run?
For example...
Hello all,
I have a simple textarea which works in all browsers i.e. I can click inside it and type.
But I can't do this with IE6! I am however, able to press the tab key until I get to the textarea and then I can type in it. But I cannot click it.
What a strange quirk? Anyone know what the hell is going on?!
The source of my form ca...
Suppose I open a new Internet Explorer window by, for example, clicking a link with target="_blank" in the HTML link. Further suppose I'm doing so programmatically via COM. I realize I can attach to the DWebBrowserEvents2::NewWindow3 event, and be notified when a new window will be opened. How do I get a reference to that newly opened wi...
Hi!
I am sending a xml document with grails to the webbrowser and want to show parts of it.
However i get an error.
I debugged and the error was because of the special charakters like ü,ö a.s.o
In Firefox I dont have any problems, it works.
However Internet Explorer 8 doesnt load the xml.
I looked at the response, and saw, that it canno...
I have a site on my IIS and everything works fine in FireFox but in IE i just get to startpage and when i try to login in nothing happens.
I put in my userinformation and push a button then it suppose to get me to another page if the password etc was correct but nothing happens in IE but works in FireFox. Any ideas?
...
Hi guys,
It looks like I am having a css problem in IE 8. The code below runs on FF without a problem. However it seems that in IE 8 the css style is not applied to the select element.
Do you know what could cause the problem in IE 8? I want it to be compatible with both browsers.
Here's the code:
<html>
<body>
<style type="text/cs...
My problem is quite annoying, probably something really stupid but I've been going around it and didn't find a solution.I call in 2 different pages to this partial view:
<div id="NotificationStatusSuspensionDiv">
<p>
<strong><%= Html.Label("Status :") %> </strong><br />
<input type="radio" name="NotificationSt...
Hi everyone!
I am working on a project which is basically a Java application with an embedded IE browser (using JDIC 0.9.5) to display custom HTML files (stored locally that I created). I have a test HTML file with a JavaScript function that checks a simple form with checkboxes and alerts the user with a dialog stating which checkboxes ...
Hi I am modifiying a cs-cart theme which uses smarty template engine. I am able to move the shoping cart links to above the top menu and it shows Ok with IE8 firefox etc. Hovewer IE7 make an empty space. How could I make IE7 happy. I added the necessary style-sheets and tpl files. Main css files are style.css and stle.base.css.
IE8 ...
From the Details section of the property tab of my control's dll:
File version 9.0.1.38589
Product version 9.0.1.38589
[assembly: AssemblyVersion("9.0.1.38589")] Shows up in reflector.
However, for some reason Manage Add-ons is reporting the control as version 0.0.0.1.
I've been unable to find any information on how this number is d...
I have to validate my code for IE, I'm trying to use jQuery. The second line works perfectly (although if I add the first line, it breaks [only in IE; works fine in other browsers]). This whole snippet works in other browsers.
$("ul#nav > li:nth-of-type(1n+4)").css("marginTop", "4px");
$("#templates > :nth-child(3n+5)").css("margin", "1...
Are there any browser issues with Oracle, specifically IE7, IE8 and Firefox? I.T. has told me that I have to build all my sites to support IE6 because IE6 works with their version of Oracle.
They've said that some of their apps break on newer browsers. Can someone let me know if this is true or provide me with a link to verify this. Tha...
I have created a popup window (something) like this:
var win;
function popup() {
if (win) {
win.close();
win = null;
}
win = window.open(...);
}
That exact code, in a simple .html file, works just fine. However it causes problems in our web app. IE always throws an "access denied" exception when trying to access most any...
Hi everyone,
I'm having a lot of trouble getting cross domain iframe communication working.
It's working on Firefox and Chrome, but on Internet Explorer, it only works in some ways:
If the parent.location = 'new_hash'; is not encompassed in an onClick event, it forces the parent frame to open a new popup window. If it is in an onCli...
I have a similar problem as stated in http://stackoverflow.com/questions/389456/cookie-blocked-not-saved-in-iframe-in-internet-explorer, I tried the approaches suggested in the several solutions suggested. But I still could not save cookies from a website of one domain such as example.com (as we have used this name in the original questi...
I am using fpdf library and generating pdfs... What happens when i click ExportToPdf button in firefox it opens the Save as dialogbox but google chrome and IE just opens the pdf file in browser, the save as doesn't seem to open it... Why this strange behavior?
...
<head>
<script language="javascript" type="text/javascript">
function openMe()
{
var win = window.open("about:blank");
var str="";
for(var a in win){
str+=a+"<br/>";
}
document.getElementById("data").innerHTML = str;
win.document.write("Karandeep Singh");
}
</script>
</head>
<body>
<div>
<inp...
Hi,
The following piece of code does not work on FF and Chrome but works on IE. I want to replace this part to make sure it works on all browsers.
Anybody, any idea?
Code below:
<td width="50%" style="FILTER: progid:DXImageTransform.Microsoft.Gradient(gradientType=1,startColorStr=#163866,endColorStr=#8bc9f3); HEIGHT: 38px;">
...
When tabbing through controls in an ActiveX control hosted in IE, once I get to the last control the tab key no longer does anything. I would like it to move the focus outside the ActiveX control to the next html control.
This works fine when the ActiveX control is hosted in a WinForms app, does anybody know how to make this work in the...