How to automatically resize iframe from inside the iframe?
Call that function of parent page from child page like that,
if you have function having name
Parent page function
Child page function.
if you have function having name
ReSize
for resize iframe in parent page than you can call it from child page with top clause in javascript like thatParent page function
function ReSize()
{
//Do stuff for iframe resize
}
Child page function.
$(document).ready(function(){
top.ReSize(); //it will call main parent page function from child page.
});
No comments :
Post a Comment