Hey there,

Jean-Philippe Encausse a écrit :
> - Does CSS Selector ">" works ?
> - What is the exact ? may be "UL.class1>LI.class2"

The immediate-child selector (>) is not yet implemented, as clearly 
stated on the documentation site:

        http://prototypejs.org/api/utility/dollar-dollar

BTW, putting whitespace around it is not the "official" syntax, but is 
not an issue either.

Also, do you actually need immediate child?  I mean, do you have any 
LI.class2 element inside UL.class1 that would *not* be an immediate 
child?  If not, then just use the descendant selector (' '), as in:

        UL.class1 LI.class2

-- 
Christophe Porteneuve aka TDD
[EMAIL PROTECTED]

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to