Hi,
The letters array does double-duty: it's used to create the nav strip
and it's also used to add a class to each LI in your list, based on the
first text character inside your list item. An exception is the '_',
which is added to LI's that start with a number. So, for example, after
listnav is applied you'll have LI's like:
<li class='anythingYouHadBefore ln-a'><a href="something.html">An item
that starts with 'a'</a></li>
(notice the ln-a class)
I'm not familiar enough with non-english languages to know if letters
like the ones you're adding can be used as css class names. If they are,
it seems like it would work by adding those letters to the letters
array. If they're not, we'd have to think out a workaround.
- Jack
jdg wrote:
I would like to use some extra characters for the first letter like á,
é or ő. I can extend the "letters" array with those chars but when i
click them on the interface it shows the full list of LIs instead of
the chars i expect.
I'm using the newest version (2.0) with jquery 1.2.6.
Could u give me some hint how to solve this?
Thanks.