internet-explorer

Png in IE browsers problem

I have a png image inside a DIV which fades in and out with js code. This works in all major browser except IE browsers. I have tested IE6, 7 and 8, and all look the same. I have even tested with a pngfix javascript code but this didn't help at all. What happens is that the png image shows up, but has rough black edges which are very ...

Anchor tags stopped working in HTML5 website

I'm using HTML5 reset as the basis for writing an HTML5/CSS3 website. For some reason though, basic anchor tags are no longer clickable in anything other than IE! <a href="http://www.google.com"&gt;google&lt;/a&gt; renders in the correct colour text for A tags, but no hover effect is being applied, the pointer doesn't change and I cant ...

Fading PNG in Internet Explorer not working

I have a div which contains a PNG image, like this: <div id="pop" class="pop_komm"> <img src="Graphics/komm.png"> </div> I have a js code which is triggered on the "OnChange" event of a drop-list: <select onchange="fadeIn('pop');" name="list" etc></select> Here is the js code: function setOpacity(eID, opacityLevel) { var eStyl...

unitPngFix prevents changing "display" of hidden "div"

I have almost solved a huge problem with png files and transparency in IE browsers on my website. The problem is that only in IE6, this wont work. I have this code called unitpngfix.js which displays transparent PNG images correctly on my website in IE browsers. I have a DIV with a png image inside it like this: <div id="pop" class="...

Internet explorer 6 Z-index problem

I have a popup DIV (js triggered) which shows an image. Very simple. The problem is, that this DIV must overlap the SELECTS which lie underneath the DIV. It works in all browsers but IE6. When the js is triggered, and the DIV is displayed, the z-index isn't right because the SELECT drop lists overlap parts of the DIV. This is only in...

ie9 .... close window, run flex function

I have Flex 4 & an amazon payment button, the way Miti shows here: http://miti.pricope.com/2009/07/11/using-amazon-flexible-payment-system-with-flex/ As he shows, when the payment process is done there is an html button that appears in the popup that calls a javascript funtion. This javascript funtion will close the popup window, return...

Array splice throws error in IE

IE7 and IE8 are not letting me splice my array (Safari, Chrome, Firefox work): lzaCreateAd1.weatherArray = new Array(); var jWeatherIcon = $('.weatherIcon'); jWeatherIcon.bind('click', function (){ var targetID = $(this).attr('id') + 'Box', idVal = targetID.substr(5,1); var j...

"'null' is null or not an object" error in IE

Right now I'm getting this strange error from IE which is basically 'null' is null or not an object The line number it gives is completely off so I don't put much credit into that however I think I narrowed it down to where it's coming from. function openSong(songlink){ $('#smallbox').slideDown(); requestCompleteSong('<tr>...

How to convert ActiveX control to NPAPI plugin

I have an ActiveX control which is designed to * Search for nearby wireless networks * Create a wireless access point * Manage network adapters I would like this plugin to work in Google Chrome/Firefox. In IE; I can use the following code to embed: <object classid="clsid:33FC4347-8118-4DB5-BFBE-8FCF2C96A997" width="32" height="32" id="...

Redirect is not working in IE.

Hi, I have built a cakephp app that needs the user to login or register(for new users), when he tries to download the file. And I use to javascript to redirect users to login page, and once they login I want users directed back to the download page they were on. I am using $this->redirect($this->referer()); works fine in chrome and...

IE 8 not pushing footer down when jquery toggle method called

Hello Just getting into jquery. This problem only occurs in IE 8, its fine in IE 7, IE 8 Compat mode, Chrome and FF. When the nail enhancements button is clicked the content bombs over the top of the footer. Does any body have any ideas please? here's the page. http://deansmith.me.uk/acrylicwizarddev/pricelist.aspx thanks Dean ...

Jquery select containers with same id's - IE 7 issue

Hello, "I have html that has 2 divs with the same id's in jquery i have it select the containers using $('#idname') in IE8/firefox/chrome it changes the html on both divs with that same id, but in ie 7 and below it only changes 1, how can i make this compatible with ie7 to select all divs with id? I would use classes but i already have ...

Navigation Bar sub menu Issues in Opera and IE

Hi! I created a navigation bar uisng simple HTML&CSS only. The navbar is located here: http://www.disenyoexport.com/de-nav-bar/nav-bar.html It looks good in Firefox and Google Chrome, but it messes up in IE and Opera. The mess happens when you hovered on the 'products' link, which should show the submenu. The 'right' behavior should be...

How to fix display:inline-block on IE6 ?

How to fix display:inline-block; on IE6 ? My html Page http://www.faressoft.org/tutorialTools/slideShow/ can I get the same result in other way ? ...

Content Moves in IE 8 When Hidden Divs are Made Visible

For my personal website, I built a very simple dropdown menu system entirely from DIVs and styles. When the user clicks on an item in the menu bar, the popup menu DIV is made visible, and when the user clicks anywhere else in the document the BODY element's onclick handler hides the selected menu and popup. In Firefox, everything works ...

Why does jQuery's :visible selector include hidden TRs on IE8?

jQuery's :visible selector seems not to work on TR elements in Internet Explorer 8 in the sense that includes TRs that have been hidden with hide(). Here is a test case: <html> <head> <script language="JavaScript" src="jquery-1.3.2.min.js"></script> <script language="JavaScript"> $(document).ready(function () { ...

how to identify onbeforeunload was caused by clicking close button

How do I determine if onbeforeunload was caused by clicking the close button or a page refresh or generally what event caused onbeforeunload? here is a snippet: window.onbeforeunload = function( e ){ if( !e ) e = window.event; // insert code to determine which is the source of the event } Please help me. ...

Facebook Login/Like Fail on IE8

I've recently implemented Facebook Login button and a Facebook "Like" button using XFBML. You can see the site on http://colnect.com Everything works well with FireFox, Chrome, Opera & Safari. However, IE doesn't show neither "login" or "like" buttons and no error message is available as well. Any ideas? ...

getting URL before unloading in IE

Can I get the updated URL before the page unloads. I'd like to check if this URL is still the URL being used by the user during a refresh.I'd like to do something before the user changes to another page. usecase: [Normal] browser address bar: www.mypage.com/page1.html user clicks reload NO popup notification display Page reloads [Abn...

Permission error when using Ajax on a protocol other than http

Hello, We are using a custom protocol handler to connect to an embedded device across firewalls, NAT etc. The solution is called Nabto. This works great - a plug-in on the user's computer handles requests to all nabto:// URIs and serves HTML pages with information about the current connections etc. Now, we would like to access Nabto fu...