Hey all,
I use a toggle effect this way:
<%= link_to_function "edit this item", "Element.toggle('editdiv')" %>
<div id="editdiv" style="display:none">
blabla <br>
</div>
<br>
roror <br>
that works great but I would like the content of editdiv to overlap
the text that comes next, in other words I want blabla to overlap
roror because for now, when I click on "edit this item"
, roror goes down to make room for blabla.
Any idea how to do this?
thanx in advance
Pat