Hi,
I'm thinking of using ExtJS in one of my latest project. However, I'm struggling on how to reproduce animate() and find() in extJS. I'm still an early user in ExtJS, hence I might missed out some stuffs.
Here's a snippet that I would like to reproduce in ExtJS.
$(element)
.animate({ width: 50 })
.find("img")
.animate({ width: 150 })
.end()
.find("h1")
.animate({ fontSize: 20 });
Cheers, Mickey