I need to recreate an effect that mint.com has on another website. When you go to the transactions page and click on one of your transactions a tab pops up underneath that says edit details. When you click on that tab a div will drop down exposing more details about the transaction. I don’t even know what this kind of effect this is called but I need to know to recreate something like this preferably with jquery.
There are some screenshots of what I’m talking about below.


only thing you would need to do is get the position of the clicked element and display a div bellow it .. of course you need to have something that gets all the extra information and displays it .. so first thing I would do is create a div somewhere on the page and hide it
then I would set the click handler
and the only thing you would need to do on the “I’m done” button is call
after submitting the changes of course 🙂
I didn’t have a whole lot of time to give maybe a more detailed example but this was just of the top of my head what I would do in this case ..
I really hope this at least gives you an idea as to what you can do.