[jQuery] Re: Damn ie7!

2009-02-01 Thread Klaus Hartl
And for some common CSS bugs check: http://positioniseverything.net/ --Klaus On 1 Feb., 00:31, Karl Swedberg wrote: > On Jan 30, 2009, at 5:06 PM, david.0pl...@gmail.com wrote: > > > > > Ok, thank you very much i got this! > > Also, just to know is there any site/books that specifically 'speak

[jQuery] Re: Damn ie7!

2009-01-31 Thread Karl Swedberg
On Jan 30, 2009, at 5:06 PM, david.0pl...@gmail.com wrote: Ok, thank you very much i got this! Also, just to know is there any site/books that specifically 'speaks' about the limitations of the various web browsers? Yes, check out PPK's Quirksmode at http://www.quirksmode.org/ --Karl __

[jQuery] Re: Damn ie7!

2009-01-30 Thread david.0pl...@gmail.com
Ok, thank you very much i got this! Also, just to know is there any site/books that specifically 'speaks' about the limitations of the various web browsers? On Jan 30, 8:31 pm, MorningZ wrote: > So what he talks about > > function showHide() { >   if ($(this).val() == "1") { $('#datasingola').hi

[jQuery] Re: Damn ie7!

2009-01-30 Thread MorningZ
So what he talks about function showHide() { if ($(this).val() == "1") { $('#datasingola').hide('slow'); } } and then Nessuno..Ciao... takes the out of the equation, which as you are finding out, isn't very manipulatable in IE On Jan 30, 1:43 pm, GreatBigBore wrote: > If adding a click

[jQuery] Re: Damn ie7!

2009-01-30 Thread GreatBigBore
If adding a click handler in $(document).ready() doesn't work, you could always add a change handler to the and just check the value. I did this in a recent project and it works fine.

[jQuery] Re: Damn ie7!

2009-01-30 Thread GreatBigBore
I have found that IE7 is very uncooperative about nodes. I recommend that you remove onClick, and attach the click handler inside $(document).ready(). Good luck.