> I'm trying doing some effects with Taconite and have some sucess. > > My XHR return this: > <taconite> > <empty select="#tbproduto tbody" /> > <append select="#tbproduto tbody">some tr xhtml codes</append> > <fadeIn select="#tbproduto tbody tr:eq(0)" /> > <fadeIn select="#tbproduto tbody tr:eq(1)" /> > <fadeIn select="#tbproduto tbody tr:eq(2)" /> > <fadeIn select="#tbproduto tbody tr:eq(3)" arg1="5000" /> > </taconite> > > That work fine, inclusive that XML > > <taconite> > <empty select="#tbproduto tbody" /> > <append select="#tbproduto tbody">some tr xhtml codes</append> > <fadeIn select="#tbproduto tbody tr" /> > </taconite> > > But, I wish fadeIn or show each html tr, one by one, just like a > callback. > > There any way to do that with Taconite?
I'm not sure exactly what you're asking, but I'll point out that you can always send script down in a taconite command too: <taconite> <eval> <![CDATA[ $('#tbproduto tbody tr').each(function() { $(this).fadeIn(); } ]]> </eval> </taconite>