Hi, I am learning XHTML and CSS and I got into trouble. On my learning page I am using CSS float layout. I have floted:left side menu, and to properly render text into content section I have set its margin to be exact same size as left menu. My problem is, that text in paragraph is wrongly shifted from the place where side munu ends. Thi...
Hello. I know its a not a new concept that my site is perfect on FF,Safari and Chrome but jacked up on IE8. That being said and cutting to the chase. This is the home page that I am working on for a social network for people with CysticFibrosis.
http://www.cysticlife.org/Home.php
If you can, look at it in FF,Safari and Chrome, and the...
From a standard, non-elevated, medium-integrity process, I need to create an instance of Internet Explorer 7 on Windows Vista, and I need to use CoCreateInstance to do it. I've tried using techniques like those outlined in this thread, but I've been having some challenges. I'm able to lower a thread's integrity level, and use CoCreateIns...
I have onKeypress Event in Text Box This Works in FireFox, does not in IE
event is passed as undefined in IE
PriceInBox.onkeypress = function(event) { return moZoltarCurrent.evt_checkForInt(event); }
...
Hi,
This code (below) comes from an Open-source project (SemanticScuttle)
I slightly modified the original code, attempting to convert a bookmarklet, into "web usable" Javascript.
Current Status:
Google Chrome = Works perfectly!
Fiefox = Functional, but opens in a full sized tab, instead of the pre-defined size.
IE = DOA = Not functi...
I've wrote NPRuntime/ActiveX plugin using FireBreath. I've done automatic installation from web-page for Firefox and Google Chrome, but I can't do it for opera and IE. Please, help me to understand how to do it.
Edit: Now I'm trying to make WiX installer for it, but I see no *.msi file in project directory after building only plugin wit...
I'm tired of setting background-position-x with IE, $('.scroller').css('background-position-x', posX+'px'); is not woking, any other methods
var posX = $('.scroller').css('background-position');
if(typeof(posX) === 'undefined')
{
posX = $(' .scroller').css('background-position-x');
}
posX = posX.split(" ",1);
...
Hi I have the following code to have few links on top of img. It works well in FF but not in IE. It seems IE is not clickable if you put link on top of img
<div style="z-index:-6755;"><img alt="October Offer" src="images/offers/october-offer.jpg" /></div>
<a href="javascript:void(0);" onclick="window.parent.SqueezeBox.close();" style="t...
on my source i use
<a href='pag.php'><input type='button' value='Next'/></a>
in firefox and crome when i click on the button i'm redirected to pag.php
but in ie it don't work. how can i do?
...
I have a form page where I have a back button and a print button both on the top and bottom of the page(coded in javascript). The back button at the bottom of the page is not working in the Internet Explorer whereas the top one and both the print buttons works good. The code chunk is same for both of back button. In addition all the butt...
Hello:
I am pretty new to Ajax. I'm trying to put some specific portions of an XML file into a div on my page, and the following works in every recent browser except IE:
var xhr = false;
//Executed to request content from the server
function setContent(){
if(window.XMLHttpRequest){
xhr = new XMLHttpRequest();
...
Looked to build an add-on for IE that records the websites visited by the user. Can't seem to find any code or samples...
...
Possible Duplicate:
Running IE6, IE7, and IE8 on the same machine
I am testing my website on different versions of IE. What is the best tool to perform the test on the same machine?
I came across a tool called IETester. Is this tool recommended?
How do you typically perform this type of test?
Note: I have tried http://spoon...
Hi,
I am using a dynamically expanding background image (similar to the new google home page background image feature). I have an jquery lavalamp animated menu that sits on top of the large background image.
The jquery animation is nice and smooth in all browsers, except for (you guessed it) IE. In IE8, it is choppy.
I've ruled out ...
Right now I have this GET request which works in Chrome but not in IE or FF.
var dire = $(this).attr('dir');
if(dire == "ASC"){
var dp = "DESC";
}
else if(dire == "DESC"){
var dp = "ASC";
}
else{
var dp = "NA";
}
$(this).attr('dir',dp);
var col = $(this).attr('col');
$('#entries').fadeO...
I've recently updated my Internet Explorer version from 8 to 9. Now, I'm getting the following exception
This is kind of weird. Following are the re-producing steps.
Open a Silverlight application [Currently, using Silverlight 4].
Use Clean, Build and Run. [The above mentioned exception occurs]
Now, again hit refresh in browser. [The...
I get this strange error if I use a link_to with the :remote => true parameter in IE 6 and IE 7. IE 8 and all other browsers works just fine:
If I commenting out the code for the link (jQuery binding on ajax:success), the error still appears. I don't know how to locate/track this error, because line 1529... does not exists. What is go...
IE8 has it's own bugs which are not present in IE6, IE7, IE8 compat. mode and IE9 beta...
i.e.: http://forum.jquery.com/topic/hidden-visible-broken-in-ie8
Is there any way to force compatibility mode for IE8 only?
When i try to put in the header something like:
<meta http-equiv="X-UA-Compatible" content="IE=IE7; IE9" />
IE8 doc...
I managed to add a tool bar IE using the BandObjectLib which is written in C# and uses DESKBANDINFO struct and others
the thing is I want to attach a window when a button is clicked that has some input like button and lists etc..The window is not part of the toolbar, but rather it is
The project I am using is the following
http://cgeers...
I have a problem with IE (8, have not tested on 7). I have a very simple situation: I create a form element
var formNode = $('<form>');
I attach a bunch of other elements to the form (fieldsets with input elements inside of tables). I then attach the form to the DOM, and then bind a submit handler:
formNode.bind('submit', function (e...