append, appendto and remove
I have a whole bunch of divs that are loaded into container field ".containter". They are all drag-gable.
When i add a new div with "append", it adds the new div at the bottom all the other divs. Then if i close one of the divs inside the the .container div with the "remove()" function, each of the remaining divs move up the exact amount the .remove() div height was. This causes the divs to appear outside the .container div.
I want each and every new div "append"-ed to the .container to appear in the top left area of the ".container" div (without pushing existing div's down), and then when i close/remove/hide a div, i do not want the remaining divs to move up the page. i want then to stay as they are.
I know this is possible as i have seen it on some sites....
any ideas?