[jQuery] Re: Taconite support effects?

2008-07-21 Thread Mike Alsup
I wish the rows showing one by one. E.g: row number 1 is showing. after showed row 1, the row number 2 is showing after showed row 2, the row number 3 is showing A script like this should do it: var $trs = $('tr'), count = $trs.length; fadeRows(0); function fadeRows(i) { var tr =

[jQuery] Re: Taconite support effects?

2008-07-19 Thread Alexsandro_xpt
So, I can do something with setTimeout() method. Like this: jQuery.fn.fadeInOneByOne = function() { var $this = this, count = this.length; fadeInElement(0); function fadeInElement(i) { var el = $this[i];

[jQuery] Re: Taconite support effects?

2008-07-18 Thread Mike Alsup
I'm trying doing some effects with Taconite and have some sucess. My XHR return this: taconite     empty select=#tbproduto tbody /     append select=#tbproduto tbodysome tr xhtml codes/append     fadeIn select=#tbproduto tbody tr:eq(0) /     fadeIn select=#tbproduto tbody tr:eq(1) /    

[jQuery] Re: Taconite support effects?

2008-07-18 Thread Alexsandro_xpt
Hi Mike... I wish the rows showing one by one. E.g: row number 1 is showing. after showed row 1, the row number 2 is showing after showed row 2, the row number 3 is showing ... ... ... Understand? Can you help me please? Thank you. On 18 jul, 18:01, Mike Alsup [EMAIL

[jQuery] Re: Taconite support effects?

2008-07-18 Thread Mike Alsup
On Jul 18, 6:29 pm, Mike Alsup [EMAIL PROTECTED] wrote: I wish the rows showing one by one. E.g: row number 1 is showing. after showed row 1, the row number 2 is showing after showed row 2, the row number 3 is showing A script like this should do it: var $trs = $('tr'), count =

[jQuery] Re: Taconite support effects?

2008-07-18 Thread Alexsandro_xpt
Wow amazing!!! :D Perfect!!! I tried change line jQuery(el).fadeIn(500, function() { to jQuery(el).show(10, function() { And this don't work very well, Did you know why? Thank you a lot!!! On 18 jul, 19:37, Mike Alsup [EMAIL PROTECTED] wrote: On Jul 18, 6:29 pm, Mike Alsup [EMAIL

[jQuery] Re: Taconite support effects?

2008-07-18 Thread Mike Alsup
Well I said the changed jQuery(el).show(10, function() {  line Don't work very well but it working fine in IE 7. Invoking show with a speed argument causes it to animate the height and width of the element. That really doesn't sound like a good idea for table rows. Other effects, such as