Have such code:
<div style="position:relative">
<div id="t1" style="position:relative; top:100; left:100;"></div>
<div id="t2" style="position:relative; top:200; left:200;"></div>
</div>
<script>
$(function () {
$('#t1').remove();
);
</script>
after that script div-t2 is moving randomly to another place, and if i remove t2, then t1 moves. how to make their position stable, i dont want them to travel on my screen.