I am working with a windows forms user control that needs to be hosted in Internet Explorer. Info about the technique I am trying to duplicate can be found here and here.
However, the control fails to load in the browser because it relies on multiple other dependant dll’s. Is there a way to get the dependent assemblies to be downloade...
Hi,
I just made a text animation (fade in; animate(top, opacity)) and at the end, the text went about 5px left then returned to its original position, quite quickly. This happened in IE only; all other major browsers behaved normally.
Any idea about why it happens, and how to fix it? I am interested in fixing IE7 in particular.
Thank...
I've got a layout bug that shows up in IE6, and I'm trying to come up with a way to give some clues to this content in our content area so that it won't drop down below the navigation menu. Sadly, while this would probably be relatively easy to fix if I could redesign the whole page, I can't do that...it's a live site that hosts many, ma...
It seems that the only way to add an onPaste event to an input element is to use HTML:
<textarea id="text_area" onpaste="on_paste" />
rather than being able to attach the event handler using javascript:
document.getElementById('text_area').onPaste = function() { alert('I iz in ur textbox, pasting some text') };
The MSDN website say...
Hi,
I got this code to alter textareas to use TinyMCE as editor. It works fine in Firefox, but IE shows the simple textarea with the code in it. Can someone help me what to do?
print("<script language=\"javascript\" type=\"text/javascript\" src=\"jscripts/tiny_mce/tiny_mce.js\"></script>");
echo('<script type="text/javascript">ti...
I have just been testing a web site I have set up in Internet explorer. Works fine in Firefox of course. I have a set of style sheets most of which have a background picture I, the user can select the different style sheets as they please. The style sheets render exactly the same apart from colours and backgrounds, of course the text bas...
Lest my question is not clear; I don't mean dynamically replacing nodes with . I mean editing each and all text directly - including headers, text in and and yes editing tables. I know this is possible in IE and I have a script which switches between editable and back which works in IE, but that doesn't work in FireFox. Is there any w...
UPDATE: the HTML was not well formed. This was causing the script to appear in inner div. Please ignore the question.
IE ver<8 has a known bug (Internet explorer cannot display the page. Operation aborted)
If a script tries to append something to upper level block:
The bug is described here:
Update: I rephrased the question and simp...
Bleh; Knowing how to ask the question is always the hardest so I explain a little more.
I'm using CAxWindow to create an IE window internally and passing in the URL via the string class argument:
CAxWindow wnd;
m_hwndWebBrowser = wnd.Create(m_hWnd, rect, m_URI, WS_CHILD|WS_DISABLED, 0);
It's part of an automated utility for anyone to...
function onlyNumeric() {
if (event.keyCode < 48 || event.keyCode > 57) {
event.returnValue = false;
}
}
onkeypress=onlyNumneric();
In IE, this code is working fine. However, in Mozilla Firefox, the event is an undefined error.
...
I've found some references to bugs or issues in IE's interpretation of CSS, but the information seems rather scattered. I'd like to have a pointer to a comprehensive overview, if such an overview exists.
edit: it's already something that Microsoft is willing to list IE's CSS problems (thanks mouviciel->sanchothefat), but they're not goi...
This is quick question,
We have a client that wants an active X embedded in a webpage that can have access ( read / write ) to a COM port.
With initial tests we are able to list the ports but get an access denied when trying to read or write to them. Is there anyway to bypass this or is it a built in feature of Internet Explorer?
The...
This is regarding this problem here
http://stackoverflow.com/questions/389456/cookie-blocked-not-saved-in-iframe-in-internet-explorer
I have set up my p3p fine as far as I know (The p3p validater doesnt return any errors), but i still get blocked cookies.
The src of my iframe is an external website, is there anything special i have to ...
Our website has border styles on select boxes and text inputs to make them look like they would in the windows XP style on windows. This basically gives them a thin blue border rather than the grey bevelled one in windows classic. I have made no attept to change the style on the little down arrow button next to the selects. The CSS looks...
I accidentally deleted a PDF file from both my web server and my development machine. I want to check my browser's cache to see if there's a copy of it in there. Where do I look? I use both Firefox and Internet Explorer, so I'd like to search both of their caches.
...
I'm a member in a team that maintains a quite big inhouse Delphi application. Now we have started to look at mapsupport. And we feel that Googlemap seems to be the best value for the money compared to some map components. The current solution (that is really bad) works by starting Internet Explorer from ShellExecute, load some coordinate...
I need to split a span into two spans wherever the user clicks. The following jQuery works fine in Firefox:
$(function () {
$('span.sentence').click(add_sentence);
});
function add_sentence() {
var selection = window.getSelection();
if (selection) {
var anchor, t1, t2;
anchor = selection.anchorNode;
parent_...
I have created a fairly large Javascript app that works in Firefox and up until yesterday, IE. I've made quite a few changes and now I'm getting syntax errors in IE, but all is fine in Firefox. Obviously I have a trailing comma somewhere but I can't see it. IE's error message is less than helpful, not even telling me which JS file has th...
Open the following HTML snippet in IE (6 or 7) as HTML document. Ctrl+F and look for "test". IE never finds if the search term "test" which happens to be in the hidden textarea.
<html>
<body>
<table>
<tr>
<td style="display:none;">
<textarea >test</textarea> -- first hidden 'test' is here
...
I'm trying to CSS use sprites to animate my Risk Matrix ... it works just fine in Firefox and Chrome, but image won't show up in IE ...
The code is below, don't want to paste the whole thing in here, but the excerpt shows the pattern:
<dl id="rmMap4x4">
<dd id="m4p4s1">
<a onclick="setDropDownListValues(4,1,3,4)" onmouseover="setDropD...