[jQuery] Click on link and get div under

[jQuery] Click on link and get div under


Hi,
I want to have a element with click event and have an div come
underneath that I can fill with some content. I have done my own, but
this only works in Firefox, and too many special cases... is there any
plugin that does this specific thing.
Something like:
$('a.dummy').click(function(event) {
var htmlcontent = 'some content';
$(event.target).addDivFloatingBeneath(htmlcontent);
});
There must be some plugin for this, I am sure...
/Pjotr