Posts tagged as ' IE Bugs ' ...

04 Feb 2010 @ 10:35 PM 

Hello

This issue only happens with menuMatic and with vertical set menus. Basically in all IE browsers the sub-nav-menu didnt show up correctly.

And another thing, when you have link tags inside li tags, you need to float the li tags in IE else you get a hidden spacer there (vertical lists only). and the menu looks very odd. This is old IE6 issue, seems like both IE7 and only IE8 fixed it. Fuck that shit.

+ Continue Reading This Article

Posted By: Dinulescu Alexandru Adrian

Last Edit: 05 Feb 2010 @ 09:57 PM

EmailPermalinkComments (0)

09 Jan 2010 @ 12:14 AM 

Hello

This post may be something very common and very known, however not everyone knows these, so this post may be useful to someone.

Here is an entire list for this

<!--[IF IE 6]> < ![endif]--> this means that everything between those will only be loaded/visible by Internet Explorer 6
<!--[IF lte/lt/gte/gt IE 6]> < ![endif]--> this means that depending on the legend it will load things like
<!--[IF !IE]>--> <!--<![endif]--> this means that all versions of IE will NOT READ the code between those 2
 lines. This is extremely useful when you try to load specific information and u do not want IE to load it, but
 all the other browsers to load said that information. for example
<!--[IF !IE]>--> THIS LINE WILL NOT BE READ BY IE BROWSERS <!--<![endif]-->

+ Continue Reading This Article

Posted By: Dinulescu Alexandru Adrian

Last Edit: 09 Jan 2010 @ 12:18 AM

EmailPermalinkComments (0)

28 Dec 2009 @ 6:28 PM 

Hello

After working on the google shortcuts for a while, i decided to open up IE 8 and see if the application works or not. I was surprised and started to do the old alert("hax") thing every dozen lines. The problem is with the $(window).keypress(function(e){}). It seems that IE doesnt understand at all the $(window) property at all when it comes with keypress/keydown/keyup events.

+ Continue Reading This Article

Tags

Tags: , ,

Categories: IE6 Bugs, jQuery

Posted By: Dinulescu Alexandru Adrian

Last Edit: 07 Jan 2010 @ 06:17 PM

EmailPermalinkComments (0)

25 Nov 2009 @ 2:45 PM 

Hello

Did it happen that when you use an animation such as fadeIn()/fadeOut() on a LCD screen, that has windows cleratype on (this happens automatically in windows vista+ but can be set on and off in windows XP), on IE (all versions), the text is not antialised anymore. This is due to the filter attribute IE browsers use to make the cleartype/stuff.

The solution is relatively simple, like putting a function callback on the fade in()/fadeOut() such as:

JQuery Code

$(document).ready(function(){
 $(".element").fadeIn(function(){
  $(this).removeAttr("filtered");
 });
});

It’s not a perfect solution, and it may be a bit laggy and you can still SEE THE TEXT BEING CLEARTYPED, but at least it wont stay without cleartype and look like shit. Also this is the only way to do it until jQuery incorporates it’s own fix to counter IE‘s behavior.

Posted By: Dinulescu Alexandru Adrian

Last Edit: 08 Jan 2010 @ 09:06 PM

EmailPermalinkComments (0)

20 Apr 2009 @ 7:18 PM 

What does this do?

This makes your footer stick at the bottom of the page, even if you have little content on the page. This is useful, but of course there are some jQuery alternatives which will be posted in a similar post later on. It’s a very simple, clean, CSS based only solution that works in 90%+ of the cases. Also this works in IE6.

The other solution is 10 times simpler but does not work in Internet Explorer 6. More details below…

+ Continue Reading This Article

Posted By: Dinulescu Alexandru Adrian

Last Edit: 07 Jan 2010 @ 11:02 PM

EmailPermalinkComments (0)