I have a table tag having trs and tds. At runtime I am adding an image to one of the tds and simultaneously moving it to overlap the old data in the td. This shows the image overlay nicely but the size of the td once changed does not return back to appropriate. Now that the image has moved space is left below it in the td. I want to be able to redraw or refresh the tr to display the data properly. I have tried changing the style attributes of the td so that the system is forced to do a refresh for the page. But no change. Please help me with this.
imgstring = "<img src='Images/comment.JPG' width='60' height='42' alt='' title='' class='forImg' />";
var obj = document.getElementById("id for a td");
var leftCoord = $(obj).offset().left;
var topCoord = $(obj).offset().top;
$(imgstring).appendTo(obj).css({'visibility':'visible',
'top':function(index,value){return value = -($(this).offset().top - topCoord) + "px";},
'left':function(index,value){return value = -($(this).offset().left - leftCoord) + "px";},
});
The above code sets the overlapping properly but the space remaining after the image is moved does not get removed.
Thanks in advance,