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?
Thz all.