I am using jQuery to add some dynamic content to a website.
I am attempting to create a new DOM element on-demand using the following code:
container = $('<div id="myContainer"></div>');
This works perfectly in Firefox and Safari, but Internet Explorer is generating an error. The IE error is: Object doesn't support this property or ...
I´m writing a IE BHO using C++. I wait for the DOCUMENTCOMPLETE event. After that I remove some Elements from the DOM.
On small websites it works fine but on the larger ones - the website is visible for a few seconds waiting for a few elements and after that the documentComplete event fires - and remove the elements.
Is it posible to ap...
I've got a site that I developed targeting mainly IE 8 (and IE 7 to some degree), but not IE6. I spent development testing in a Windows XP VM with IE8, but now that development is very far along I've noticed that it looks about like IE6 would render it when viewed with IE8 on Vista. I thought it was because on Vista, IE8 may default to I...
I use pngfix from jquery : http://jquery.andreaseberhard.de/pngFix/
Everything it's ok, but i have one big problem. When I turn pngfix, in IE6 .png it is transparent, but images's with are changing , They become bigger. I don't know why ?? And it just in IE6 , in other browsers it is okei.
How Can I fix it ???
Thank You !
...
I did a code in jquery and ajax with working very well in Safari, FF and IE8, but dont work in IE6.
He can 5 Group of forms editable, which should not be showing, but only the first works, the ajax is also not working in IE6 and IE7.
scintillation only put in 2, but is 5 how can you see the link below.
$(document).ready(function(){
...
I'm trying to implement a click-like effect on my horizontal tab menu using opacity property and jQuery animate function. Here is the code for doing this:
$(document).ready(function() {
$("div#header > ul > li").click(function(event) {
$(this).animate({opacity: 0.7} ,"fast", "", function() {
$(this).animate...
Hi all,
I asked a similar sort of question a week ago at link text and that particular issue got solved, but only for IE7. I still have issues with IE6.
Basically I have a left navigation menu that I want to work in an "accordion" fashion. The menu is made up of ULs and LIs and I want to be able to click on an LI to open up the sub men...
I'm building a javascript map application and I've noticed that in Internet explorer 6, 7 & 8 I can visibly see the lines as the browser repaints the screen from top to bottom when I do things like pan & zoom. Is there anyway I can minimise this? Firefox, chrome & opera are all really fast and I can't visible see the repaint lines.
...
I added the attribute opacity: .3; to my img tag but it only works for firefox. Is there a solution for firefox and ie8?
...
I have an ActiveX control that displays documents of a given file format within IE, much like Adobe have an ActiveX control that displays PDFs.
My control is a full-page control, just like the PDF viewer - it takes over the whole client area of IE, using IE's own EnableFullPage mechanism.
I'd like to take control of the various menu an...
I am trying to add two new entries to the context menu, one for images and one for anchors. I am using 0x2 for images 0x20 for anchors they are displayed correctly but when there is an image with a link only the image link is showed they do different things so i would like both items to show up?
...
Hi Guys,
Does anybody know of a comprehensive library to make SVG work with IE (7 and 8 in particular)?
I wanted something Javascript which could be included in my web page and which would silently convert all my SVG to VML in a fashion similar to what excanvas does for Canvas.
...
On Vista using IE8, I have an instance of IWebBrowser2, which I am using to obtain the current HTML document:
IWebBrowser2* browser;
CComPtr<IDispatch> disp;
HRESULT hr = browser->get_Document(&disp);
When this is executed by an Administrator, the call succeeds. However, when called by a regular user, the call returns an error code of...
I'm getting a weird error where in Internet Explorer 7, when I call Math.round on a float it gives me an "Invalid Argument" error. Consider the following:
var elementLeft = parseInt(element.style.left); // Here we're actually getting NaN
function Foo(x) {
this.x = x;
this.apply = function(element) {
element.style.left = Math.ro...
Hi,
I have a requirement to have some modal popups appear on a webpage. At first i implemented them as true modal windows, but then i found out that true modal windows cannot communicate with parent window in IE.
Now i am trying to implement them as regular windows that always steal focus, which is sorta working.
Here is the code tha...
Hey everyone,
I am trying to troubleshoot why IE is slow slow processing this javascript compared to Chrome and FF. In Chrome and FF there is no delay for any onclick events but in IE it pauses for like 5 seconds before doing anything.
Here is the link to the code i am running.
http://geekswithblogs.net/ptahiliani/archive/2009/08/13/h...
I am trying to create a jQuery plugin that will clone a form to an iframe then submit a form. It is a hack to fake an ajax file upload. I also know there are plugins like this already, but none that I have trie meet my needs. I have a problem appending a jQuery object to anything in IE. (I am running IE 7.0) I have tried FF and it wor...
Hey guys, this bit of code works in IE but not in Chrome, any idea why?
<script type="text/javascript">
function fillreply(commentID){
var item = document.getElementById("replyto");
item.value=commentID;
}
</script>
...
...
<div id="makereply" class="hidden">Reply to: <input type="text" size="6"
...
I've been searching around for an answer to this one and I can't seem to find the solution. When I mock-up a simple HTML page with a single text input on it, I'm not able to type in it in IE6 or IE7. The HTML below is exactly what I'm testing this on.
<html>
<head>
<title>Input Test</title>
</head>
<body>
<input t...
Works in chrome, and works in ff, but not in IE.
IE refuses to call the the function in my callback.
I'll post the code I feel is relevant:
function slideRight(){
disableAll();
var leftMarg = parseFloat(opiHolder.css("marginLeft"));
var fullWidth = parseFloat(opiHolder.css("width"));
if(fullWidth + leftMarg > opiWidt...