internet-explorer

CSS borderline wont show in IE

.xboxcontent { display:block; background:#000000; border:3px solid #fff; border-width:0 3px; } .xsnazzy h1, .xsnazzy h2, .xsnazzy p {margin:0 10px; letter-spacing:1px;} .xsnazzy h1 {font-size:2.5em; color:#fc0;} .xsnazzy h2 {font-size:2em; color:#234; border:0;} .xsnazzy p {padding-bottom:0.5em; color:#eee;} .xsnazzy h2 {padding-t...

Dojo buttons not rendering correctly on ie 7

This only happens on Internet Explorer 7 or ie 8 compatibility mode , the button labels appears in the wrong place of the page, but when I place the cursor on them the label appears in the right place, I attached some screen shots. thx in advance for all the help you can bring me ...

Returning HTML in the JS portion of a respond_to block throws errors in IE

Here's a common pattern in my controller actions: respond_to do |format| format.html {} format.js { render :layout => false } end I.e., if the request is non-AJAX, I'll send the HTML content in a layout on a brand new page. If the request is AJAX, I'll send down the same content, but without a layout (so that it can be inser...

space problems with Internet explorer 6

I have this webpage the OK : http://ldetek.com/a.jpg the problem : http://ldetek.com/b.jpg Why is there a HUGE gap of white space for no reason.. only in IE (6) I know the inline trick.. but it don't work ! coded page : here if the margin on the #content is remove the problem is fix, but i cannot seem to find solution to get the...

Browser rendering

We are in the process of anylizing the page performance, i would like to know if we have like 10 images , 2 css , 3 JS files. How is IE 7 , 8 actually how render the content. -> Is it like, it call the resources parllelly or is there any limit on the sequancy it calls all this resources.? Or it has like threds in built which will autom...

Javascript error in IE

Hello =) My problem in ie browser only... auth.js Deferred.errorHandler = function(e) { alert('Unhandled error ' + e); }; function User() { SbApi.url = 'http://api.sindbad.ru'; var user = new SbApi('User'); ... IE console: 'Deffered not defined' on line 1 symbol 1 'SbApi not defined' on line 4 symbol 1 Any ideas? Thank you ...

javascript / IE 6/7: check if within an iframe

I have a page which needs to check whether it is contained within an iframe or not in effect whether the page is the top page. I tried doing this: if(window == window.parent) and it works for Opera, FF, and Chrome but not for IE. is there some trick in IE I should use? ...

Raphael minify version doesn't work on IE. Any idea?

Hello, I've an issue with the fantastic RaphaelJs lib. It doesn't work on IE (8 and 7) if I use the minify version. It works of with the dev version. An error is raised on paper = Raphael("canvas", 100, 100); Any idea what can be wrong? Thanks in advance ...

JQuery Not Parsing Properly attr("href") in IE

I have a really wierd issue that I'm hoping someone can shed some light on. I am using Jquery to retrieve an Http Response from another website (which I own). Once I receive the DOM, I parse through it in order to get certain information. However, when I try to get the href attribute of a link, IE is adding the local domain to the beginn...

border-radius.htc support for hiding/showing divs?

I'm using border-radius.htc to simulate the border-radius CSS property in IE. It works fine, but I want to show and hide a div with rounded corners. The problem is that the border-radius.htc does not support advanced manipulation like hiding div, only modifying the size. Has anyone experienced similar problems and found a solution? ...

How do I get SHDocVw.InternetExplorer to reuse the same window in Vista like it does in XP?

I am working on a program that uses IE to display its help pages. I am using C# in Visual Studio 2008 compiling to .Net Framework 2.0 In Windows XP everything works as expected. In Vista every time I click on a help button I get a new window with a new IE browser. Has anyone else seen this or know how to get around this? Here is the...

How can I get IE to recognize NBSP as NBSP instead of a space?

For the following JavaScript: function EscapedString(str) { var obj = document.createElement("span"); obj.innerHTML = str; return "&#" + (obj.textContent || obj.innerText).charCodeAt(0) + ";"; } alert(EscapedString(" ")); alert(EscapedString(" ")); alert(EscapedString("\xA0")); IE returns   for each value instead ...

How to get iframe scroll position in IE using Java Script?

scrollPosition = window.frames[id].document.body.scrollTop; The above code doesn't work correctly. Please tell me how to correct it. ...

how to avoid internet explorer script error

I've created a vb.net program that navigate web pages with the help of a tutorial I found on the net. Now I'm trying to navigate the php scripts that I've created. But there is always this internet explorer script error that I am seeing. Which I cannot see when I access the php scripts on firefox or in any other browser. What do I do wit...

IE issue with jQuery masonry call

I have a masonry call which is working fine in all browsers but IE7 and below. Maybe its just a simple syntax issue, but maybe someone has had experience of this before. Code below: $(function(){ $('#mainContent').masonry({ columnWidth: 200, itemSelector: '.threadWrapper:visible', resizeable: true, saveOptions: true, ...

IE clear float dont work (for footer) and disapear

I have that page, in FF it's fine, and in ff PC too, but again in ie the footer disapear for no reason... can you help ? ...

IE compatibility: My Mini-Chat is Overflowing (Validated Markup)

IE cross-compatibility issue. My website, www.zerozaku.com, is compatible with Chrome and Firefox, but IE has an issue with my Mini-Chat overflowing out of the box. Could anyone help? P.S. I've only tested it on IE8, Firefox, Chrome ...

Javascript IE error: unexpected call to method or property access

Hi, I have the following code and its working (as usual) in everything but IE. Its giving me a unexpected call to method or property access in Jquery and I have no idea how to debug it. Ive been using the IE developer toolbar, which is useless for this error and just gives me a line no 12 (inside the jquery script). Any help is v much ...

Prototype focusFirstElement() causes form to 'disappear' in IE

Strange bug I'm getting. I have a login form that is hidden by default, once a user clicks on an observed element, the element containing the form slides down (using Effect.BlidnDown in Scriptaculous) Here is the function, which is part of the 'Interface' object: revealLoginForm: function() { $('a_login').blur(); if (!$('hform'...

Event.observe 'change' events not being triggered in IE

The Prototype event listener I use for changes in select menus is not being triggered in IE. Event.observe('use_billing', 'change', Checkout.getBillingData); This works fine in Firefox (of course), but nothing happens in IE (of course) - I've been Googling this for some time, but I have not found a suitable solution to this problem. I...