Hello i have a function like this
}function mycallback(IDVal)
{
MyDIVsection.innerHTML = '<IFRAME src="GetInfo.aspx?ID=' + IDVal + '" width="200" height="50" frameborder="0"></IFRAME>';
This javascript function will request the GetInfo.aspx page and pass the ID value and i put some info on that page based on that ID and when i assign that to my MYDIVSection <DIV> tag's innerHTML i get all the information that were in GetInfo.aspx. But my problem is with iFRAME where managing the height and width of Iframe based on the size of the info i recieve from the server is too much of coding.So what i like to know is , say i have iframe and i have the information as string from IFRAME section and is it possible to only pull the information from the IFRAME section so that i get only the info and not the Iframe so that i can put the Info into my MYDIVSection DIV tag.
Thanks and Regards






Bookmarks