internet-explorer

Internet Explorer randomly drops sessions between pages in cakePHP

Hello everyone, I've come across an extremely unusual bug that my team has literally no idea how to solve. Doing some research, I found some similar solutions that I thought would work, but alas did not. Here is my situation, let me know if I can provide additional insight to help solve the problem. The first step is that someone choos...

Permission Denied IE iFrame

Hi Guys, I have a site on A.com and an iframe on B.com which calls javascript from A.com. This works great in FF. In IE7 / 8 I am getting a Message: Access is denied. message. I have checked the HTTP Traffic via Fiddler - and I can see that it isn't blocked in Fiddler ? Any ideas what could be causing this and how to solve? ...

Hr Tag in IE - remove border

In other browsers except IE7 and lower the hr displays a border around the hr tag which I don't want it to. <!--[if lte IE 7]> <style type="text/css"> hr { margin: -3px 0 0 0; padding: 0; height: 19px; border: none; outline: none; background: url("img/split.png") center no-repeat; } </style> <![endif]--> I've t...

Website not working properly on IE (One more IE hack needed)

http://shikebali.co.cc Its working fine on Firefox but started to act weirdly on IE as it used to work fine. Anyone here to help finding what went wrong ?? ...

GWT setUrl function of Image class does not work in IE

Hi Now i am using GWT , I am trying to change the image path, but it does not work in IE I am displaying image using Base64 encoding ..it displays image properly but when i am trying to change the image to another Base64 encoding image it does not work in IE Please suggest me Thanks ...

IE layers issue when dtd with doctype tag is not added

Hello colleagues, I am facing a very strange issue because of which when i do not add the below line to the html the layers(z-index) is not working. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"; "_http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; Please let me know if you are aware of the issue and how to g...

how to get doctype tag with url using xsl:output

Hi, i have added the below xsl:output tag in xslt <xsl:output method="html" indent="yes" encoding="utf-8" doctype-public="-//W3C//DTD HTML 4.0 Transitional//EN" ></xsl:output> as a result i get the below doctype tag in the html output- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> how can i mention the url in the do...

AJAX not passing POST vars in IE7/IE8

Please Note: answers along the lines of 'use jquery' or 'use (insert wellknown framework)' is not helpful. Frameworks such as jquery includes alot of extra code which is not nessary at all for what I am doing. 'But, you can include one from Google', yes that may be the case, but I prefer to keep to my own code. With that in mind, lets pr...

Cant append "used" DOMObject in IE

I have some objects, that keep created DOMObjects, like here: function category(){ var domBlock; this.block = function(){ if (!domBlock){ // Here dom-object constructor $('<div></div>'); etc } return domBlock; // jquery object, // but i test and native document.createElement ...

Object does not support this propery or method IE & jQuery

I am using jQuery and the cornerz plug in to get rounded corners on elements of the page without using images. In IE7 and 8 it fails and I get this error: "Object doesn't support this property or method" on this lines: if($.browser.msie && settings.fixIE) { var ow = $$.outerWidth(); var oh = $$.outerHeight(); Basicall...

How switch off image border in IE

Its very strange... i write img{border: none} ... <img src="..." border="0" style="border: 0"/> But it still not working, and IE debugger show me image "border: medium". And my div's more and more fat(( For 10 px per image. Damn IE, it gonna make me crazy... ...

Text search with soft hyphens in Internet Explorer

We are using soft hyphens in a text paragraph on a web page to improve the layout, since the number of long words in the text is unusually high. Unfortunately, this causes the text search (Ctrl+F) in Internet Explorer to fail. It does not find the words with soft hyphens, unless the soft hyphens are entered at the correct place in the se...

IE History Tracking, IFRAMES, and Cross Domain error...

So here's the deal. We have a Flash application that is running within an HTML file. For one page we call a legacy reporting system in ASP.NET that is within an IFRAME. This page then communicates back to the Flash application using cross-domain scripting (document.domain = "domain" is set in both pages. THIS ALL WORKS. Now the kick...

3D in HTML5 vs Silverlight

I'm wondering about the 3D capabilities of HTML5 versus those of Silverlight. Someone was telling me that Internet Explorer 9 and the next version of Chrome will both feature GPU acceleration. How will this compare to say, the capabilities of Silverlight? I know Unity is a great 3D engine, but would it be possible to render reasonably c...

Inconsistent Session data from IE - cached sessions???

I'm trying to prevent some basic click-fraud on my site, and am building links based on session time data. Everything works in FF, but in IE the information I'm storing in the session is somehow being changed. When I load up the main page, I set my session variables like this session_start(); $_SESSION['time']=time(); I'm out putt...

Styling related issue in IE8

I am using a background image to display as a button. The button shows up well in all versions of firefox, chrome, opera etc. However, the image fails to render itself in IE8. Only the image is not being shown, some of the other class styling gets applied such as width, height etc. Even more confounding is that in another page(though a ...

Why won't this Jquery run on IE?

Hello All, I have this Jquery code (function($){ $.expr[':'].linkingToImage = function(elem, index, match){ // This will return true if the specified attribute contains a valid link to an image: return !! ($(elem).attr(match[3]) && $(elem).attr(match[3]).match(/\.(gif|jpe?g|png|bmp)$/i)); }; $.fn.imgPreview = function(userDe...

IE / Facebook Issue : Why Facebook Like box not display in Internet Explorer 6 - IE8 ?

IE / Facebook Issue : Why Facebook Like box not display in Internet Explorer6 - IE8 ? Facebook like box display throgh my web application on every browser excluding IE-IE8 Now final Application.html file contains are < !DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/DTD/strict.dtd"&gt;&lt;BR&gt; < html xm...

Can anybody tell me exactly what the Object doesn't support this property or method means in IE for JS?

Hey guys, while surfing through the web and through stackoverflow.com i found many posts in forums, etc. where this message occures in IE but not in the other browsers. the thing is, the resolutions vary widely and it's not clear for me what's the best way to avoid this problem. So my question is, if anybody knows exactly, specificly w...

How to sign a piece of data from JavaScript running in IE?

Assuming users have a personal certificate already setup (visible in Internet Options / Content / Certificates), how can I write in JavaScript code that invokes the Microsoft CryptoAPI, asking users to sign piece of data with their personal certificate? ...