I have a stack of <div>
elements that show a name. I'd like to include a +
link off to the side of each <div>
that, when clicked, expands the <div>
and adds more detailed information (from a RoR controller).
After poking around on the net, I found link_to_remote
and related RoR stuff, but I can't seem to get the right combination to work together. Can someone point me to a tutorial or show what the controller and view interaction should look like?
Thanks!