Hi oo00oo (!)

"name" is not a standard attribute for li elements.
You should use class instead.
<li class="li0"></li>
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 ( 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
>
> <div id="mainnav">
> <ul>
> <li name="li0"><li name="li1"><li name="li2">
> </ul>
> </div>
>
> <div id="subnav">
> <ul>
> <li name="li0"><li name="li1"><li name="li2">
> </ul>
> </div>
> _______________________________________________
> Rails-spinoffs mailing list
> Rails-spinoffs@lists.rubyonrails.org
> http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
>
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

Reply via email to