Re: [Rails-spinoffs] sub-selection with $

2006-03-15 Thread oo00oo
Perfect ! Thanks :) document.getElementsByClassName('li0', 'ssnav'); ___ Rails-spinoffs mailing list Rails-spinoffs@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

Re: [Rails-spinoffs] sub-selection with $

2006-03-15 Thread Nicolas Terray
document.getElementsByClassName('li0', 'ssnav'); On 3/15/06, oo00oo <[EMAIL PROTECTED]> wrote: > Thanks > but I have 2 class ( li0 ) one under div "main" and another under div > "subnav" > > So what I need is more $('ssnav').getElementsByClassName('li0'); > > But return the error > Error : $("ssna

Re: [Rails-spinoffs] sub-selection with $

2006-03-15 Thread oo00oo
Thanks but I have 2 class ( li0 ) one under div "main" and another under div "subnav" So what I need is more $('ssnav').getElementsByClassName('li0'); But return the error Error : $("ssnav").getElementsByClassName is not a function So, how select it ? Hi oo00oo (!) "name" is not a standard

Re: [Rails-spinoffs] sub-selection with $

2006-03-15 Thread Nicolas Terray
Hi oo00oo (!) "name" is not a standard attribute for li elements. You should use class instead. Then with prototype : var my_elements = document.getElementsByClassName('li0'); Hope this helps, Nicolas Terray On 3/15/06, oo00oo <[EMAIL PROTECTED]> wrote: > Hello, > > I have 2 navigations ( mainn

[Rails-spinoffs] sub-selection with $

2006-03-15 Thread oo00oo
Hello, I have 2 navigations ( mainnav and subnav ) with 2 lists List have same names ( li0 li1 li2 ) What is the best way to select li1 of subnav with prototype 1.4 in this case ? I just want to hide/show it Thanks ___ Rails-spinoffs mai