[autocomplete] animated list
My application is using the fancy jquery effects and having put into it the autocomplete of Jorn Zaefferer (big thanks to him for that!) I tweaked it with css a bit, but I was missing some nice fading effect while showing the suggestion list.
Changing two things in the code:
..
hide: function() {
element && element.hide(); to .fadeOut("fast");
..
show: function() {
..
}).show(); to .fadeIn("fast");
made it more fancy;) well at least for my taste ;)
adding an additional option for that (and other effects) would be nice.. but not necessary.
Take care!