[jQuery] Re: New jquery website not quite there yet

2008-10-09 Thread Mauricio (Maujor) Samy Silva


HTML: a definition list

dl
   dtText 1/dt
   ddtext 1.1/dd
   ddtext 1.2/dd
   ddtext 1.3/dd
   ddtext 1.4/dd
   dtText 2/dt
   ddtext 2.1/dd
   ddtext 2.2/dd
   ddtext 2.3/dd
   ddtext 2.4/dd
   ...more dt's dd's..
/dl

jQuery script:

...
$('dt').click(function() {
   $(this).selector('dd').hide();
// ...more stuff
...

Are there a jQuery method to select all dd's for the dt clicked?
Say: If the click is on Text 1, only text1.1, text1.2,...,text1.4 are 
selected.


PS: Remeber, it's not allowed any element other than dd and dt within a dl 
list.




TIA
Mauricio




[jQuery] Re: New jQuery Website...

2008-09-10 Thread jeremyBass

I think chris would see it right as on my vista pc (IE
7.0.6001.18000 ) all is fine...

so my hunch is the largest hole is XP IE users...
IE 7.0.5730.11
IE 7.0.5730.13
and all of IE 6 ...
but i haven't check those since work eralyer today
jeremyBass

On Sep 9, 5:19 pm, Rick Faircloth [EMAIL PROTECTED] wrote:
 Chris.

 Check this one in IE7.

 http://docs.jquery.com/Tutorials:jQuery_For_Designers#

 Rick

 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris 
 Jordan
 Sent: Tuesday, September 09, 2008 12:55 PM
 To: jquery-en@googlegroups.com
 Subject: [jQuery] Re: New jQuery Website...

 I just looked at the site in IE7 and I'm not seeing any problems. I clicked 
 around in the
 documentation, and tutorials area, and just didn't notice a problem. Jeremy, 
 maybe you *should*
 provide some specifics... either that or I'm blind! :o)

 Chris

 On Mon, Sep 8, 2008 at 12:26 PM, jeremyBass [EMAIL PROTECTED] wrote:

 I don't know if this is just me but the site is all kinds of broken...
 I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs...
 I'd give a url but ... well it's almost everywhere... cool idea
 though...

 On Sep 8, 10:03 am, Rick Faircloth [EMAIL PROTECTED] wrote:





  Yes, it does look great!

  Rick

  From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
  Chris Jordan
  Sent: Monday, September 08, 2008 12:58 PM
  To: jQuery Group
  Subject: [jQuery] New jQuery Website...

  I really like the look of the new jQuery website. When did it get launched? 
  My hats off to the
  designers! It looks fantastic!! :o)

  Chris

  --http://cjordan.us

  No virus found in this incoming message.
  Checked by AVG -http://www.avg.com
  Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/8/2008 
  7:01 AM

 --http://cjordan.us

 No virus found in this incoming message.
 Checked by AVG -http://www.avg.com
 Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/9/2008 
 10:47 AM- Hide quoted text -

 - Show quoted text -


[jQuery] Re: New jQuery Website...

2008-09-10 Thread Rick Faircloth

Yes, I'm on IE7, 7.0.5730.13.

I'll have to check on upgrading.  But why would there be so much
difference between 7.0.6001.18000 and the rest?  Surely there a lot
of users using earlier versions...

Rick

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
 jeremyBass
 Sent: Wednesday, September 10, 2008 12:30 AM
 To: jQuery (English)
 Subject: [jQuery] Re: New jQuery Website...
 
 
 I think chris would see it right as on my vista pc (IE
 7.0.6001.18000 ) all is fine...
 
 so my hunch is the largest hole is XP IE users...
 IE 7.0.5730.11
 IE 7.0.5730.13
 and all of IE 6 ...
 but i haven't check those since work eralyer today
 jeremyBass
 
 On Sep 9, 5:19 pm, Rick Faircloth [EMAIL PROTECTED] wrote:
  Chris.
 
  Check this one in IE7.
 
  http://docs.jquery.com/Tutorials:jQuery_For_Designers#
 
  Rick
 




[jQuery] Re: New jQuery Website...

2008-09-10 Thread jeremyBass

All of the versions act different... mostly due to trying to fix some
bug we are not thinking about but
 IE 7.0.6001.18000 (vista)
7.0.5730.11 (xp upgraded install to sp2)
7.0.5730.13(xp sp2 full install)

they all act different...

ie...

if you wrote this...

var agent= navigator.userAgent.toLowerCase();
var ver = parseInt(navigator.appVersion);

var ie = agent.indexOf(msie)=0;
var ie6=ie  agent.indexOf(msie 6)=0;
var ie7=ie  agent.indexOf(msie 7)=0;

var ff=!ie  agent.indexOf(mozilla)=0;
var ff2=ff  ver==4;
var ff3=ff  ver==5;

if (ff3){
do somthing for ff3
} else if (ie6){
do somthing for ie6
} else if (ie7){
do somthing for ie7
}else{
not supported sorry}

IE 7.0.5730.11 falls in to ie6 but IE7, 7.0.5730.13 will not

where as
if (ff3){
do somthing for ff3
} else if (ie7){
do somthing for ie7
} else if (ie6){
do somthing for ie6
}else{
not supported sorry}

IE 7.0.5730.11 falls in ie7 along with the rest...

the joys of the web...
jeremyBass

On Sep 10, 6:53 am, Rick Faircloth [EMAIL PROTECTED] wrote:
 Yes, I'm on IE7, 7.0.5730.13.

 I'll have to check on upgrading.  But why would there be so much
 difference between 7.0.6001.18000 and the rest?  Surely there a lot
 of users using earlier versions...

 Rick



  -Original Message-
  From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
  jeremyBass
  Sent: Wednesday, September 10, 2008 12:30 AM
  To: jQuery (English)
  Subject: [jQuery] Re: New jQuery Website...

  I think chris would see it right as on my vista pc (IE
  7.0.6001.18000 ) all is fine...

  so my hunch is the largest hole is XP IE users...
  IE 7.0.5730.11
  IE 7.0.5730.13
  and all of IE 6 ...
  but i haven't check those since work eralyer today
  jeremyBass

  On Sep 9, 5:19 pm, Rick Faircloth [EMAIL PROTECTED] wrote:
   Chris.

   Check this one in IE7.

  http://docs.jquery.com/Tutorials:jQuery_For_Designers#

   Rick- Hide quoted text -

 - Show quoted text -


[jQuery] Re: New jQuery Website...

2008-09-10 Thread Rick Faircloth

Your code demonstration is a definite strike against
incremental upgrades in my eyes...something could break
every few days.

Since I don't use Vista, yet, I have to wonder how many of my
sites are failing on IE7 for Vista, yet performing perfectly
on every XP system.

What a pain!

Rick

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
 jeremyBass
 Sent: Wednesday, September 10, 2008 11:22 AM
 To: jQuery (English)
 Subject: [jQuery] Re: New jQuery Website...
 
 
 All of the versions act different... mostly due to trying to fix some
 bug we are not thinking about but
  IE 7.0.6001.18000 (vista)
 7.0.5730.11 (xp upgraded install to sp2)
 7.0.5730.13(xp sp2 full install)
 
 they all act different...
 
 ie...
 
 if you wrote this...
 
 var agent= navigator.userAgent.toLowerCase();
 var ver = parseInt(navigator.appVersion);
 
 var ie = agent.indexOf(msie)=0;
 var ie6=ie  agent.indexOf(msie 6)=0;
 var ie7=ie  agent.indexOf(msie 7)=0;
 
 var ff=!ie  agent.indexOf(mozilla)=0;
 var ff2=ff  ver==4;
 var ff3=ff  ver==5;
 
 if (ff3){
 do somthing for ff3
 } else if (ie6){
 do somthing for ie6
 } else if (ie7){
 do somthing for ie7
 }else{
 not supported sorry}
 
 IE 7.0.5730.11 falls in to ie6 but IE7, 7.0.5730.13 will not
 
 where as
 if (ff3){
 do somthing for ff3
 } else if (ie7){
 do somthing for ie7
 } else if (ie6){
 do somthing for ie6
 }else{
 not supported sorry}
 
 IE 7.0.5730.11 falls in ie7 along with the rest...
 
 the joys of the web...
 jeremyBass
 
 On Sep 10, 6:53 am, Rick Faircloth [EMAIL PROTECTED] wrote:
  Yes, I'm on IE7, 7.0.5730.13.
 
  I'll have to check on upgrading.  But why would there be so much
  difference between 7.0.6001.18000 and the rest?  Surely there a lot
  of users using earlier versions...
 
  Rick
 
 
 
   -Original Message-
   From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
   jeremyBass
   Sent: Wednesday, September 10, 2008 12:30 AM
   To: jQuery (English)
   Subject: [jQuery] Re: New jQuery Website...
 
   I think chris would see it right as on my vista pc (IE
   7.0.6001.18000 ) all is fine...
 
   so my hunch is the largest hole is XP IE users...
   IE 7.0.5730.11
   IE 7.0.5730.13
   and all of IE 6 ...
   but i haven't check those since work eralyer today
   jeremyBass
 
   On Sep 9, 5:19 pm, Rick Faircloth [EMAIL PROTECTED] wrote:
Chris.
 
Check this one in IE7.
 
   http://docs.jquery.com/Tutorials:jQuery_For_Designers#
 
Rick- Hide quoted text -
 
  - Show quoted text -
 
 No virus found in this incoming message.
 Checked by AVG - http://www.avg.com
 Version: 8.0.169 / Virus Database: 270.6.19/1663 - Release Date: 9/10/2008 
 6:00 AM



[jQuery] Re: New jQuery Website...

2008-09-10 Thread Chris Jordan
Amen to this sort of thing being a royal pain in the arse! :o(

Chris

On Wed, Sep 10, 2008 at 11:26 AM, Rick Faircloth
[EMAIL PROTECTED]wrote:


 Your code demonstration is a definite strike against
 incremental upgrades in my eyes...something could break
 every few days.

 Since I don't use Vista, yet, I have to wonder how many of my
 sites are failing on IE7 for Vista, yet performing perfectly
 on every XP system.

 What a pain!

 Rick

  -Original Message-
  From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of jeremyBass
  Sent: Wednesday, September 10, 2008 11:22 AM
  To: jQuery (English)
  Subject: [jQuery] Re: New jQuery Website...
 
 
  All of the versions act different... mostly due to trying to fix some
  bug we are not thinking about but
   IE 7.0.6001.18000 (vista)
  7.0.5730.11 (xp upgraded install to sp2)
  7.0.5730.13(xp sp2 full install)
 
  they all act different...
 
  ie...
 
  if you wrote this...
 
  var agent= navigator.userAgent.toLowerCase();
  var ver = parseInt(navigator.appVersion);
 
  var ie = agent.indexOf(msie)=0;
  var ie6=ie  agent.indexOf(msie 6)=0;
  var ie7=ie  agent.indexOf(msie 7)=0;
 
  var ff=!ie  agent.indexOf(mozilla)=0;
  var ff2=ff  ver==4;
  var ff3=ff  ver==5;
 
  if (ff3){
  do somthing for ff3
  } else if (ie6){
  do somthing for ie6
  } else if (ie7){
  do somthing for ie7
  }else{
  not supported sorry}
 
  IE 7.0.5730.11 falls in to ie6 but IE7, 7.0.5730.13 will not
 
  where as
  if (ff3){
  do somthing for ff3
  } else if (ie7){
  do somthing for ie7
  } else if (ie6){
  do somthing for ie6
  }else{
  not supported sorry}
 
  IE 7.0.5730.11 falls in ie7 along with the rest...
 
  the joys of the web...
  jeremyBass
 
  On Sep 10, 6:53 am, Rick Faircloth [EMAIL PROTECTED] wrote:
   Yes, I'm on IE7, 7.0.5730.13.
  
   I'll have to check on upgrading.  But why would there be so much
   difference between 7.0.6001.18000 and the rest?  Surely there a lot
   of users using earlier versions...
  
   Rick
  
  
  
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]
 On Behalf Of jeremyBass
Sent: Wednesday, September 10, 2008 12:30 AM
To: jQuery (English)
Subject: [jQuery] Re: New jQuery Website...
  
I think chris would see it right as on my vista pc (IE
7.0.6001.18000 ) all is fine...
  
so my hunch is the largest hole is XP IE users...
IE 7.0.5730.11
IE 7.0.5730.13
and all of IE 6 ...
but i haven't check those since work eralyer today
jeremyBass
  
On Sep 9, 5:19 pm, Rick Faircloth [EMAIL PROTECTED]
 wrote:
 Chris.
  
 Check this one in IE7.
  
http://docs.jquery.com/Tutorials:jQuery_For_Designers#
  
 Rick- Hide quoted text -
  
   - Show quoted text -
 
  No virus found in this incoming message.
  Checked by AVG - http://www.avg.com
  Version: 8.0.169 / Virus Database: 270.6.19/1663 - Release Date:
 9/10/2008 6:00 AM




-- 
http://cjordan.us


[jQuery] Re: New jQuery Website...

2008-09-10 Thread jeremyBass

For what is worth... it's mostly the other way around... the lower the
version the more issues... luckly... if like in this case... if it
works in vista then is may not work in an IE7 version but if if works
in the lowest IE7 version then it works on the vista version... at
least all the sites i've done and cheacked...
jeremyBass

On Sep 10, 9:26 am, Rick Faircloth [EMAIL PROTECTED] wrote:
 Your code demonstration is a definite strike against
 incremental upgrades in my eyes...something could break
 every few days.

 Since I don't use Vista, yet, I have to wonder how many of my
 sites are failing on IE7 for Vista, yet performing perfectly
 on every XP system.

 What a pain!

 Rick



  -Original Message-
  From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
  jeremyBass
  Sent: Wednesday, September 10, 2008 11:22 AM
  To: jQuery (English)
  Subject: [jQuery] Re: New jQuery Website...

  All of the versions act different... mostly due to trying to fix some
  bug we are not thinking about but
   IE 7.0.6001.18000 (vista)
  7.0.5730.11 (xp upgraded install to sp2)
  7.0.5730.13(xp sp2 full install)

  they all act different...

  ie...

  if you wrote this...

  var agent= navigator.userAgent.toLowerCase();
  var ver = parseInt(navigator.appVersion);

  var ie = agent.indexOf(msie)=0;
  var ie6=ie  agent.indexOf(msie 6)=0;
  var ie7=ie  agent.indexOf(msie 7)=0;

  var ff=!ie  agent.indexOf(mozilla)=0;
  var ff2=ff  ver==4;
  var ff3=ff  ver==5;

  if (ff3){
  do somthing for ff3
  } else if (ie6){
  do somthing for ie6
  } else if (ie7){
  do somthing for ie7
  }else{
  not supported sorry}

  IE 7.0.5730.11 falls in to ie6 but IE7, 7.0.5730.13 will not

  where as
  if (ff3){
  do somthing for ff3
  } else if (ie7){
  do somthing for ie7
  } else if (ie6){
  do somthing for ie6
  }else{
  not supported sorry}

  IE 7.0.5730.11 falls in ie7 along with the rest...

  the joys of the web...
  jeremyBass

  On Sep 10, 6:53 am, Rick Faircloth [EMAIL PROTECTED] wrote:
   Yes, I'm on IE7, 7.0.5730.13.

   I'll have to check on upgrading.  But why would there be so much
   difference between 7.0.6001.18000 and the rest?  Surely there a lot
   of users using earlier versions...

   Rick

-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
jeremyBass
Sent: Wednesday, September 10, 2008 12:30 AM
To: jQuery (English)
Subject: [jQuery] Re: New jQuery Website...

I think chris would see it right as on my vista pc (IE
7.0.6001.18000 ) all is fine...

so my hunch is the largest hole is XP IE users...
IE 7.0.5730.11
IE 7.0.5730.13
and all of IE 6 ...
but i haven't check those since work eralyer today
jeremyBass

On Sep 9, 5:19 pm, Rick Faircloth [EMAIL PROTECTED] wrote:
 Chris.

 Check this one in IE7.

http://docs.jquery.com/Tutorials:jQuery_For_Designers#

 Rick- Hide quoted text -

   - Show quoted text -

  No virus found in this incoming message.
  Checked by AVG -http://www.avg.com
  Version: 8.0.169 / Virus Database: 270.6.19/1663 - Release Date: 9/10/2008 
  6:00 AM- Hide quoted text -

 - Show quoted text -


[jQuery] Re: New jQuery Website...

2008-09-10 Thread jeremyBass

Very true... the only thing I hate is the people the go around and are
like firefox this safari that and worse yet the one's that are like I
won’t support IE users... get real… I’m not a big fan of the sloth we
call Microsoft but they are slowly wising up... it's just that well...
IE is the number one browser... and if you want to make it out here in
the real web world, we have no choice cause you can't force a user...
as much as I want your mama and grandma to use a better browser….
anyways... I think I have jumped up and down enough today.. :-P

On Sep 10, 9:46 am, Chris Jordan [EMAIL PROTECTED] wrote:
 Amen to this sort of thing being a royal pain in the arse! :o(

 Chris

 On Wed, Sep 10, 2008 at 11:26 AM, Rick Faircloth
 [EMAIL PROTECTED]wrote:







  Your code demonstration is a definite strike against
  incremental upgrades in my eyes...something could break
  every few days.

  Since I don't use Vista, yet, I have to wonder how many of my
  sites are failing on IE7 for Vista, yet performing perfectly
  on every XP system.

  What a pain!

  Rick

   -Original Message-
   From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
  Behalf Of jeremyBass
   Sent: Wednesday, September 10, 2008 11:22 AM
   To: jQuery (English)
   Subject: [jQuery] Re: New jQuery Website...

   All of the versions act different... mostly due to trying to fix some
   bug we are not thinking about but
    IE 7.0.6001.18000 (vista)
   7.0.5730.11 (xp upgraded install to sp2)
   7.0.5730.13(xp sp2 full install)

   they all act different...

   ie...

   if you wrote this...

   var agent= navigator.userAgent.toLowerCase();
   var ver = parseInt(navigator.appVersion);

   var ie = agent.indexOf(msie)=0;
   var ie6=ie  agent.indexOf(msie 6)=0;
   var ie7=ie  agent.indexOf(msie 7)=0;

   var ff=!ie  agent.indexOf(mozilla)=0;
   var ff2=ff  ver==4;
   var ff3=ff  ver==5;

   if (ff3){
   do somthing for ff3
   } else if (ie6){
   do somthing for ie6
   } else if (ie7){
   do somthing for ie7
   }else{
   not supported sorry}

   IE 7.0.5730.11 falls in to ie6 but IE7, 7.0.5730.13 will not

   where as
   if (ff3){
   do somthing for ff3
   } else if (ie7){
   do somthing for ie7
   } else if (ie6){
   do somthing for ie6
   }else{
   not supported sorry}

   IE 7.0.5730.11 falls in ie7 along with the rest...

   the joys of the web...
   jeremyBass

   On Sep 10, 6:53 am, Rick Faircloth [EMAIL PROTECTED] wrote:
Yes, I'm on IE7, 7.0.5730.13.

I'll have to check on upgrading.  But why would there be so much
difference between 7.0.6001.18000 and the rest?  Surely there a lot
of users using earlier versions...

Rick

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]
  On Behalf Of jeremyBass
 Sent: Wednesday, September 10, 2008 12:30 AM
 To: jQuery (English)
 Subject: [jQuery] Re: New jQuery Website...

 I think chris would see it right as on my vista pc (IE
 7.0.6001.18000 ) all is fine...

 so my hunch is the largest hole is XP IE users...
 IE 7.0.5730.11
 IE 7.0.5730.13
 and all of IE 6 ...
 but i haven't check those since work eralyer today
 jeremyBass

 On Sep 9, 5:19 pm, Rick Faircloth [EMAIL PROTECTED]
  wrote:
  Chris.

  Check this one in IE7.

 http://docs.jquery.com/Tutorials:jQuery_For_Designers#

  Rick- Hide quoted text -

- Show quoted text -

   No virus found in this incoming message.
   Checked by AVG -http://www.avg.com
   Version: 8.0.169 / Virus Database: 270.6.19/1663 - Release Date:
  9/10/2008 6:00 AM

 --http://cjordan.us- Hide quoted text -

 - Show quoted text -


[jQuery] Re: New jQuery Website...

2008-09-10 Thread Rick Faircloth

Yes, it's definitely the market that drives developers and not the other
way around.  We can have only miniscule affect on what browsers people
use.  And the ones whose minds we can change have probably already done
their homework and made their choice.


 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
 jeremyBass
 Sent: Wednesday, September 10, 2008 12:56 PM
 To: jQuery (English)
 Subject: [jQuery] Re: New jQuery Website...
 
 
 Very true... the only thing I hate is the people the go around and are
 like firefox this safari that and worse yet the one's that are like I
 won’t support IE users... get real… I’m not a big fan of the sloth we
 call Microsoft but they are slowly wising up... it's just that well...
 IE is the number one browser... and if you want to make it out here in
 the real web world, we have no choice cause you can't force a user...
 as much as I want your mama and grandma to use a better browser….
 anyways... I think I have jumped up and down enough today.. :-P
 
 On Sep 10, 9:46 am, Chris Jordan [EMAIL PROTECTED] wrote:
  Amen to this sort of thing being a royal pain in the arse! :o(
 
  Chris
 
  On Wed, Sep 10, 2008 at 11:26 AM, Rick Faircloth
  [EMAIL PROTECTED]wrote:
 
 
 
 
 
 
 
   Your code demonstration is a definite strike against
   incremental upgrades in my eyes...something could break
   every few days.
 
   Since I don't use Vista, yet, I have to wonder how many of my
   sites are failing on IE7 for Vista, yet performing perfectly
   on every XP system.
 
   What a pain!
 
   Rick
 
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
   Behalf Of jeremyBass
Sent: Wednesday, September 10, 2008 11:22 AM
To: jQuery (English)
Subject: [jQuery] Re: New jQuery Website...
 
All of the versions act different... mostly due to trying to fix some
bug we are not thinking about but
 IE 7.0.6001.18000 (vista)
7.0.5730.11 (xp upgraded install to sp2)
7.0.5730.13(xp sp2 full install)
 
they all act different...
 
ie...
 
if you wrote this...
 
var agent= navigator.userAgent.toLowerCase();
var ver = parseInt(navigator.appVersion);
 
var ie = agent.indexOf(msie)=0;
var ie6=ie  agent.indexOf(msie 6)=0;
var ie7=ie  agent.indexOf(msie 7)=0;
 
var ff=!ie  agent.indexOf(mozilla)=0;
var ff2=ff  ver==4;
var ff3=ff  ver==5;
 
if (ff3){
do somthing for ff3
} else if (ie6){
do somthing for ie6
} else if (ie7){
do somthing for ie7
}else{
not supported sorry}
 
IE 7.0.5730.11 falls in to ie6 but IE7, 7.0.5730.13 will not
 
where as
if (ff3){
do somthing for ff3
} else if (ie7){
do somthing for ie7
} else if (ie6){
do somthing for ie6
}else{
not supported sorry}
 
IE 7.0.5730.11 falls in ie7 along with the rest...
 
the joys of the web...
jeremyBass
 
On Sep 10, 6:53 am, Rick Faircloth [EMAIL PROTECTED] wrote:
 Yes, I'm on IE7, 7.0.5730.13.
 
 I'll have to check on upgrading.  But why would there be so much
 difference between 7.0.6001.18000 and the rest?  Surely there a lot
 of users using earlier versions...
 
 Rick
 
  -Original Message-
  From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]
   On Behalf Of jeremyBass
  Sent: Wednesday, September 10, 2008 12:30 AM
  To: jQuery (English)
  Subject: [jQuery] Re: New jQuery Website...
 
  I think chris would see it right as on my vista pc (IE
  7.0.6001.18000 ) all is fine...
 
  so my hunch is the largest hole is XP IE users...
  IE 7.0.5730.11
  IE 7.0.5730.13
  and all of IE 6 ...
  but i haven't check those since work eralyer today
  jeremyBass
 
  On Sep 9, 5:19 pm, Rick Faircloth [EMAIL PROTECTED]
   wrote:
   Chris.
 
   Check this one in IE7.
 
  http://docs.jquery.com/Tutorials:jQuery_For_Designers#
 
   Rick- Hide quoted text -
 
 - Show quoted text -
 
No virus found in this incoming message.
Checked by AVG -http://www.avg.com
Version: 8.0.169 / Virus Database: 270.6.19/1663 - Release Date:
   9/10/2008 6:00 AM
 
  --http://cjordan.us- Hide quoted text -
 
  - Show quoted text -
 
 No virus found in this incoming message.
 Checked by AVG - http://www.avg.com
 Version: 8.0.169 / Virus Database: 270.6.19/1663 - Release Date: 9/10/2008 
 6:00 AM



[jQuery] Re: New jQuery Website...

2008-09-09 Thread Sam Collett

As much as we don't like it, sites still have to be designed to cater
for IE 6+

We are still on IE 6 at work, because some of the systems we use (not
ones I have worked on of course!) only seem to work in IE 6. You would
have thought when you pay for a system, it is updated as new browsers
come out... should be in the Service Level Agreement.

I'm sure there are still a lot of corporate intranet's still depending
on IE 6 (developers not caring about standards or really understanding
web development outside the GUI used...)

-Sam

PS While IE7 may have some annoyances (Firefox does too), it is still
much better (standards wise) than IE6

jeremyBass wrote:
 I don't know if this is just me but the site is all kinds of broken...
 I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs...
 I'd give a url but ... well it's almost everywhere... cool idea
 though...

 On Sep 8, 10:03�am, Rick Faircloth [EMAIL PROTECTED] wrote:
  Yes, it does look great!
 
  Rick
 
  From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
  Chris Jordan
  Sent: Monday, September 08, 2008 12:58 PM
  To: jQuery Group
  Subject: [jQuery] New jQuery Website...
 
  I really like the look of the new jQuery website. When did it get launched? 
  My hats off to the
  designers! It looks fantastic!! :o)
 
  Chris
 
  --http://cjordan.us
 
  No virus found in this incoming message.
  Checked by AVG -http://www.avg.com
  Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/8/2008 
  7:01 AM


[jQuery] Re: New jQuery Website...

2008-09-09 Thread Rick Faircloth

It's relatively simple to make CSS-based layout work for IE6, IE7, and FF3,
which are my target browsers for design.  I make sure all my sites work well
on all three and it doesn't take much extra work at all.

I use conditional stylesheets for all browser-specific tweaks, so that once
a browser's use is pretty much over, all I have to do is delete the stylesheet
rather than change a bunch of tweaked code.

Rick

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sam 
 Collett
 Sent: Tuesday, September 09, 2008 6:58 AM
 To: jQuery (English)
 Subject: [jQuery] Re: New jQuery Website...
 
 
 As much as we don't like it, sites still have to be designed to cater
 for IE 6+
 
 We are still on IE 6 at work, because some of the systems we use (not
 ones I have worked on of course!) only seem to work in IE 6. You would
 have thought when you pay for a system, it is updated as new browsers
 come out... should be in the Service Level Agreement.
 
 I'm sure there are still a lot of corporate intranet's still depending
 on IE 6 (developers not caring about standards or really understanding
 web development outside the GUI used...)
 
 -Sam
 
 PS While IE7 may have some annoyances (Firefox does too), it is still
 much better (standards wise) than IE6
 
 jeremyBass wrote:
  I don't know if this is just me but the site is all kinds of broken...
  I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs...
  I'd give a url but ... well it's almost everywhere... cool idea
  though...
 




[jQuery] Re: New jQuery Website...

2008-09-09 Thread Chris Jordan
I just looked at the site in IE7 and I'm not seeing any problems. I clicked
around in the documentation, and tutorials area, and just didn't notice a
problem. Jeremy, maybe you *should* provide some specifics... either that or
I'm blind! :o)

Chris

On Mon, Sep 8, 2008 at 12:26 PM, jeremyBass [EMAIL PROTECTED] wrote:


 I don't know if this is just me but the site is all kinds of broken...
 I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs...
 I'd give a url but ... well it's almost everywhere... cool idea
 though...

 On Sep 8, 10:03 am, Rick Faircloth [EMAIL PROTECTED] wrote:
  Yes, it does look great!
 
  Rick
 
  From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Chris Jordan
  Sent: Monday, September 08, 2008 12:58 PM
  To: jQuery Group
  Subject: [jQuery] New jQuery Website...
 
  I really like the look of the new jQuery website. When did it get
 launched? My hats off to the
  designers! It looks fantastic!! :o)
 
  Chris
 
  --http://cjordan.us
 
  No virus found in this incoming message.
  Checked by AVG -http://www.avg.com
  Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/8/2008
 7:01 AM




-- 
http://cjordan.us


[jQuery] Re: New jQuery Website...

2008-09-09 Thread fairchild

I like the new site, but also kinda miss the cylinders logo.  I
thought that was such a great logo for jquery,
~michael

On Sep 9, 5:05 am, Rick Faircloth [EMAIL PROTECTED] wrote:
 It's relatively simple to make CSS-based layout work for IE6, IE7, and FF3,
 which are my target browsers for design.  I make sure all my sites work well
 on all three and it doesn't take much extra work at all.

 I use conditional stylesheets for all browser-specific tweaks, so that once
 a browser's use is pretty much over, all I have to do is delete the stylesheet
 rather than change a bunch of tweaked code.

 Rick

  -Original Message-
  From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sam 
  Collett
  Sent: Tuesday, September 09, 2008 6:58 AM
  To: jQuery (English)
  Subject: [jQuery] Re: New jQuery Website...

  As much as we don't like it, sites still have to be designed to cater
  for IE 6+

  We are still on IE 6 at work, because some of the systems we use (not
  ones I have worked on of course!) only seem to work in IE 6. You would
  have thought when you pay for a system, it is updated as new browsers
  come out... should be in the Service Level Agreement.

  I'm sure there are still a lot of corporate intranet's still depending
  on IE 6 (developers not caring about standards or really understanding
  web development outside the GUI used...)

  -Sam

  PS While IE7 may have some annoyances (Firefox does too), it is still
  much better (standards wise) than IE6

  jeremyBass wrote:
   I don't know if this is just me but the site is all kinds of broken...
   I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs...
   I'd give a url but ... well it's almost everywhere... cool idea
   though...


[jQuery] Re: New jQuery Website...

2008-09-09 Thread jeremyBass

Sure can... the page i was currently on...
http://plugins.jquery.com/project/Intercept
(but it's almost every page...)

and here is a pic for you

http://digitalbarn.tv/Proofs/NCITA/proofs/Untitled-1.jpg

and the browser version IE 7.0.5730.11

which there is a big diff between that and

 IE 7.0.5730.13

if i was to pin it down... i'd say it's a clearing issue.. but i
didn't look at the code... hope that helps
jeremyBass

On Sep 9, 9:54 am, Chris Jordan [EMAIL PROTECTED] wrote:
 I just looked at the site in IE7 and I'm not seeing any problems. I clicked
 around in the documentation, and tutorials area, and just didn't notice a
 problem. Jeremy, maybe you *should* provide some specifics... either that or
 I'm blind! :o)

 Chris





 On Mon, Sep 8, 2008 at 12:26 PM, jeremyBass [EMAIL PROTECTED] wrote:

  I don't know if this is just me but the site is all kinds of broken...
  I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs...
  I'd give a url but ... well it's almost everywhere... cool idea
  though...

  On Sep 8, 10:03 am, Rick Faircloth [EMAIL PROTECTED] wrote:
   Yes, it does look great!

   Rick

   From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
  Behalf Of Chris Jordan
   Sent: Monday, September 08, 2008 12:58 PM
   To: jQuery Group
   Subject: [jQuery] New jQuery Website...

   I really like the look of the new jQuery website. When did it get
  launched? My hats off to the
   designers! It looks fantastic!! :o)

   Chris

   --http://cjordan.us

   No virus found in this incoming message.
   Checked by AVG -http://www.avg.com
   Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/8/2008
  7:01 AM

 --http://cjordan.us- Hide quoted text -

 - Show quoted text -


[jQuery] Re: New jQuery Website...

2008-09-09 Thread Chris Jordan
Hmm... still looks fine to me. I'm using IE 7.0.6001.18000

Yeah, I hope the designer can get this resolved too. Hope these version
numbers help out.

Chris

On Tue, Sep 9, 2008 at 12:05 PM, jeremyBass [EMAIL PROTECTED] wrote:


 Sure can... the page i was currently on...
 http://plugins.jquery.com/project/Intercept
 (but it's almost every page...)

 and here is a pic for you

 http://digitalbarn.tv/Proofs/NCITA/proofs/Untitled-1.jpg

 and the browser version IE 7.0.5730.11

 which there is a big diff between that and

  IE 7.0.5730.13

 if i was to pin it down... i'd say it's a clearing issue.. but i
 didn't look at the code... hope that helps
 jeremyBass

 On Sep 9, 9:54 am, Chris Jordan [EMAIL PROTECTED] wrote:
  I just looked at the site in IE7 and I'm not seeing any problems. I
 clicked
  around in the documentation, and tutorials area, and just didn't notice a
  problem. Jeremy, maybe you *should* provide some specifics... either that
 or
  I'm blind! :o)
 
  Chris
 
 
 
 
 
  On Mon, Sep 8, 2008 at 12:26 PM, jeremyBass [EMAIL PROTECTED]
 wrote:
 
   I don't know if this is just me but the site is all kinds of broken...
   I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs...
   I'd give a url but ... well it's almost everywhere... cool idea
   though...
 
   On Sep 8, 10:03 am, Rick Faircloth [EMAIL PROTECTED] wrote:
Yes, it does look great!
 
Rick
 
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]
 On
   Behalf Of Chris Jordan
Sent: Monday, September 08, 2008 12:58 PM
To: jQuery Group
Subject: [jQuery] New jQuery Website...
 
I really like the look of the new jQuery website. When did it get
   launched? My hats off to the
designers! It looks fantastic!! :o)
 
Chris
 
--http://cjordan.us
 
No virus found in this incoming message.
Checked by AVG -http://www.avg.com
Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date:
 9/8/2008
   7:01 AM
 
  --http://cjordan.us- Hide quoted text -
 
  - Show quoted text -




-- 
http://cjordan.us


[jQuery] Re: New jQuery Website...

2008-09-09 Thread jeremyBass

I figured that if we are trying to help I'd point out a few other
flaws I'm sure was not meant to be there... look to here for FF and
Safari very minor issue
http://digitalbarn.tv/Proofs/NCITA/proofs/Untitled-2.jpg

the version I'm running is on xp sp2... I'll get the version numbers
on the vista pc later today but i think is IE 7.0.5730.13

there are a few more but I post there later (little time at the
moment), and I'm not sure if they are real flaws... anyways... the
idea is great and can't wait... :-)



On Sep 9, 11:30 am, Chris Jordan [EMAIL PROTECTED] wrote:
 Hmm... still looks fine to me. I'm using IE 7.0.6001.18000

 Yeah, I hope the designer can get this resolved too. Hope these version
 numbers help out.

 Chris





 On Tue, Sep 9, 2008 at 12:05 PM, jeremyBass [EMAIL PROTECTED] wrote:

  Sure can... the page i was currently on...
 http://plugins.jquery.com/project/Intercept
  (but it's almost every page...)

  and here is a pic for you

 http://digitalbarn.tv/Proofs/NCITA/proofs/Untitled-1.jpg

  and the browser version IE 7.0.5730.11

  which there is a big diff between that and

   IE 7.0.5730.13

  if i was to pin it down... i'd say it's a clearing issue.. but i
  didn't look at the code... hope that helps
  jeremyBass

  On Sep 9, 9:54 am, Chris Jordan [EMAIL PROTECTED] wrote:
   I just looked at the site in IE7 and I'm not seeing any problems. I
  clicked
   around in the documentation, and tutorials area, and just didn't notice a
   problem. Jeremy, maybe you *should* provide some specifics... either that
  or
   I'm blind! :o)

   Chris

   On Mon, Sep 8, 2008 at 12:26 PM, jeremyBass [EMAIL PROTECTED]
  wrote:

I don't know if this is just me but the site is all kinds of broken...
I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs...
I'd give a url but ... well it's almost everywhere... cool idea
though...

On Sep 8, 10:03 am, Rick Faircloth [EMAIL PROTECTED] wrote:
 Yes, it does look great!

 Rick

 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]
  On
Behalf Of Chris Jordan
 Sent: Monday, September 08, 2008 12:58 PM
 To: jQuery Group
 Subject: [jQuery] New jQuery Website...

 I really like the look of the new jQuery website. When did it get
launched? My hats off to the
 designers! It looks fantastic!! :o)

 Chris

 --http://cjordan.us

 No virus found in this incoming message.
 Checked by AVG -http://www.avg.com
 Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date:
  9/8/2008
7:01 AM

   --http://cjordan.us-Hide quoted text -

   - Show quoted text -

 --http://cjordan.us- Hide quoted text -

 - Show quoted text -


[jQuery] Re: New jQuery Website...

2008-09-09 Thread Rick Faircloth
Chris.

 

Check this one in IE7.

 

http://docs.jquery.com/Tutorials:jQuery_For_Designers#

 

Rick

 

From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris 
Jordan
Sent: Tuesday, September 09, 2008 12:55 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: New jQuery Website...

 

I just looked at the site in IE7 and I'm not seeing any problems. I clicked 
around in the
documentation, and tutorials area, and just didn't notice a problem. Jeremy, 
maybe you *should*
provide some specifics... either that or I'm blind! :o)

Chris

On Mon, Sep 8, 2008 at 12:26 PM, jeremyBass [EMAIL PROTECTED] wrote:


I don't know if this is just me but the site is all kinds of broken...
I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs...
I'd give a url but ... well it's almost everywhere... cool idea
though...


On Sep 8, 10:03 am, Rick Faircloth [EMAIL PROTECTED] wrote:
 Yes, it does look great!

 Rick

 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris 
 Jordan
 Sent: Monday, September 08, 2008 12:58 PM
 To: jQuery Group
 Subject: [jQuery] New jQuery Website...

 I really like the look of the new jQuery website. When did it get launched? 
 My hats off to the
 designers! It looks fantastic!! :o)

 Chris

 --http://cjordan.us

 No virus found in this incoming message.
 Checked by AVG -http://www.avg.com
 Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/8/2008 
 7:01 AM




-- 
http://cjordan.us

No virus found in this incoming message.
Checked by AVG - http://www.avg.com
Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/9/2008 10:47 
AM



[jQuery] Re: New jQuery Website...

2008-09-08 Thread John Resig

It was launched the Friday before last. You can thank Scott Jehl for
all the hard work he did!

--John



On Mon, Sep 8, 2008 at 12:58 PM, Chris Jordan [EMAIL PROTECTED] wrote:
 I really like the look of the new jQuery website. When did it get launched?
 My hats off to the designers! It looks fantastic!! :o)
 Chris

 --
 http://cjordan.us



[jQuery] Re: New jQuery Website...

2008-09-08 Thread Rick Faircloth
Yes, it does look great!

 

Rick

 

From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris 
Jordan
Sent: Monday, September 08, 2008 12:58 PM
To: jQuery Group
Subject: [jQuery] New jQuery Website...

 

I really like the look of the new jQuery website. When did it get launched? My 
hats off to the
designers! It looks fantastic!! :o)

 

Chris

-- 
http://cjordan.us

No virus found in this incoming message.
Checked by AVG - http://www.avg.com
Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/8/2008 7:01 
AM



[jQuery] Re: New jQuery Website...

2008-09-08 Thread jeremyBass

I don't know if this is just me but the site is all kinds of broken...
I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs...
I'd give a url but ... well it's almost everywhere... cool idea
though...

On Sep 8, 10:03 am, Rick Faircloth [EMAIL PROTECTED] wrote:
 Yes, it does look great!

 Rick

 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris 
 Jordan
 Sent: Monday, September 08, 2008 12:58 PM
 To: jQuery Group
 Subject: [jQuery] New jQuery Website...

 I really like the look of the new jQuery website. When did it get launched? 
 My hats off to the
 designers! It looks fantastic!! :o)

 Chris

 --http://cjordan.us

 No virus found in this incoming message.
 Checked by AVG -http://www.avg.com
 Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/8/2008 
 7:01 AM


[jQuery] Re: New jQuery Website...

2008-09-08 Thread Rick Faircloth

After my comment, I noticed the same thing as I drilled down into the site.
The home page looks fine on IE 7, but I went to a tutorial page, and the
page was somewhat garbled.  Looks like the CSS layout could use some tweaking.

Rick

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
 jeremyBass
 Sent: Monday, September 08, 2008 1:26 PM
 To: jQuery (English)
 Subject: [jQuery] Re: New jQuery Website...
 
 
 I don't know if this is just me but the site is all kinds of broken...
 I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs...
 I'd give a url but ... well it's almost everywhere... cool idea
 though...
 
 On Sep 8, 10:03 am, Rick Faircloth [EMAIL PROTECTED] wrote:
  Yes, it does look great!
 
  Rick
 
  From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
  Chris Jordan
  Sent: Monday, September 08, 2008 12:58 PM
  To: jQuery Group
  Subject: [jQuery] New jQuery Website...
 
  I really like the look of the new jQuery website. When did it get launched? 
  My hats off to the
  designers! It looks fantastic!! :o)
 
  Chris
 
  --http://cjordan.us
 
  No virus found in this incoming message.
  Checked by AVG -http://www.avg.com
  Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/8/2008 
  7:01 AM
 
 No virus found in this incoming message.
 Checked by AVG - http://www.avg.com
 Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/8/2008 
 7:01 AM



[jQuery] Re: New jQuery Website...

2008-09-08 Thread parrfolio

All the reason not to use IE7 :)

Long live Chrome!?

On Sep 8, 11:02 am, Rick Faircloth [EMAIL PROTECTED] wrote:
 After my comment, I noticed the same thing as I drilled down into the site.
 The home page looks fine on IE 7, but I went to a tutorial page, and the
 page was somewhat garbled.  Looks like the CSS layout could use some tweaking.

 Rick

  -Original Message-
  From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
  jeremyBass
  Sent: Monday, September 08, 2008 1:26 PM
  To: jQuery (English)
  Subject: [jQuery] Re: New jQuery Website...

  I don't know if this is just me but the site is all kinds of broken...
  I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs...
  I'd give a url but ... well it's almost everywhere... cool idea
  though...

  On Sep 8, 10:03 am, Rick Faircloth [EMAIL PROTECTED] wrote:
   Yes, it does look great!

   Rick

   From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
   Chris Jordan
   Sent: Monday, September 08, 2008 12:58 PM
   To: jQuery Group
   Subject: [jQuery] New jQuery Website...

   I really like the look of the new jQuery website. When did it get 
   launched? My hats off to the
   designers! It looks fantastic!! :o)

   Chris

   --http://cjordan.us

   No virus found in this incoming message.
   Checked by AVG -http://www.avg.com
   Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/8/2008 
   7:01 AM

  No virus found in this incoming message.
  Checked by AVG -http://www.avg.com
  Version: 8.0.169 / Virus Database: 270.6.17/1655 - Release Date: 9/8/2008 
  7:01 AM


[jQuery] Re: New jQuery Website...

2008-09-08 Thread Trans



On Sep 8, 12:58 pm, Chris Jordan [EMAIL PROTECTED] wrote:
 I really like the look of the new jQuery website. When did it get launched?
 My hats off to the designers! It looks fantastic!! :o)

+1 although I sort of miss the red cylinders logo.

7.