[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 k...@englishrules.com 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 'speaks'
  about the limitations of the various web browsers?

 Yes, check out PPK's Quirksmode athttp://www.quirksmode.org/

 --Karl
 
 Karl Swedbergwww.englishrules.comwww.learningjquery.com


[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

Karl Swedberg
www.englishrules.com
www.learningjquery.com



[jQuery] Re: Damn ie7!

2009-01-30 Thread GreatBigBore

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


[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 select and just check the
value. I did this in a recent project and it works fine.


[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

select name=gruppi onchange=showHide()option id=nascondidata
value=0Nessuno../
optionoption value='1'Ciao/option.../select

takes the option out of the equation, which as you are finding out,
isn't very manipulatable in IE




On Jan 30, 1:43 pm, GreatBigBore robfbis...@mac.com wrote:
 If adding a click handler in $(document).ready() doesn't work, you
 could always add a change handler to the select and just check the
 value. I did this in a recent project and it works fine.


[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 morni...@gmail.com wrote:
 So what he talks about

 function showHide() {
   if ($(this).val() == 1) { $('#datasingola').hide('slow'); }

 }

 and then

 select name=gruppi onchange=showHide()option id=nascondidata
 value=0Nessuno../
 optionoption value='1'Ciao/option.../select

 takes the option out of the equation, which as you are finding out,
 isn't very manipulatable in IE

 On Jan 30, 1:43 pm, GreatBigBore robfbis...@mac.com wrote:

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