I have this code that changes frame's height depending on the content in it:
function AdjustFrame() {
var fr = document.frames("in");
fr.frameElement.style.width = fr.document.all.txt.offsetWidth+fr.document.all.txt.offsetLeft;
fr.frameElement.style.height = fr.document.all.txt.offsetHeight+fr.document.all.txt.offsetTop;
}
I need almost the same but with table.Is it possible?
Im not the one who made this code so I dont know how to change it to fit the table.....