[jQuery] Re: Loop through array with animating each element

2009-01-25 Thread realin
#x27;), i = -1; >      var slideshow = setInterval(function(){ >        var val = words[++i] || words[i=0]; >        tweet.slideUp(function(){ >            $(this).text( val ).slideDown(); >        }); >      },2000); > > }); > > On Jan 25, 2:15 am, realin wrote: &

[jQuery] Re: Loop through array with animating each element

2009-01-24 Thread realin
Awesome!! Works for me, but is there any way to make it continous slideshow. I mean right now it stops at five, i want to restart when it reaches five. Like looping slideshow.. Thanks a ton !! On Jan 24, 5:38 pm, realin wrote: > Hi Guys, > > Is there a way toloopthroughan array while

[jQuery] Loop through array with animating each element

2009-01-24 Thread realin
be a total mess, but i am the new one here .. a={0,1,3,4,5}; $(document).ready(function(){ jQuery.each(a,function(){ $("#tweet").text(this.text); setTimeout('$("#tweet").slideUp("slow")',2000); }); }); Thanks in advance :) Cheers !! Realin!

[jQuery] [autocomplete] Multiple values to autocomplete

2008-05-08 Thread realin
hi guys, i m new in the list, i want to know how can i add multiple values using autocomplete in a single text field, just like gmail when we add email address in to field. can i capture a keypress event, so that a list is again opened when i press a seperator ? Please let me know thanks :)