[jQuery] Re: Listnav Umlauts and special chars

2009-07-26 Thread sixtyseven
Oh, I almost forgot to say thank you for this gem. This is a real fantastic plugin, I used it to make a faq section for a site, by combining it with a simple div display-switch. Works like a charm, except the umlauts/specialchar problem.

[jQuery] Re: Listnav Umlauts and special chars

2009-07-26 Thread sixtyseven
Oh, and of course the "not found" sentence should be a variable, too. This is a real fantastic plugin, I used it to make a faq section for a site, by combining it with a simple div display-switch. Works like a charm, except the umlauts/specialchar problem.

[jQuery] Listnav Umlauts and special chars

2009-07-26 Thread sixtyseven
I ran into a problem when having umlauts as first letter in the tag. They will not be shown, until I add them to the letters array. IMHO the better way would be to have a function, that "degrades" the letter to the next near neighbor, i.e. if it is ü, make it to u, if it's é make it to e, etc. Do

[jQuery] Re: jcarousel autostart

2008-12-29 Thread sixtyseven
My callback goes as follows: function mycarousel_initCallback(carousel) { // Disable autoscrolling if the user clicks the prev or next button. carousel.buttonNext.bind('click', function() { carousel.startAuto(0); }); carousel.buttonPrev.bind('click', function() {

[jQuery] Re: jcarousel autostart

2008-12-29 Thread sixtyseven
Sorry for beeing so short in the description, so here is my attempt. The Scenario is the following: I want to have an option for the jcarousel having autostart on a per user basis. So here is my attempt by using a cookie via php. In the header i ask for the cookie as follows: $slider could get

[jQuery] jcarousel autostart

2008-12-22 Thread sixtyseven
could anyone please explain how to start/stop autoscrolling of the jcarousel by clicking on an external link on the page?