a me si',
cmq quello che ti serve per fare funzionare quello che chiedevi e' gia' nel mio post
se vuoi combinarlo con istruzioni solo per IE potresti fare x es. cosi'
codice:
function passa(ifrm,el){
var ifrmWin=(document.all)?document.frames[ifrm]:document.getElementById(ifrm).contentWindow;
var ifrmDoc=(document.all)?document.frames[ifrm].document:document.getElementById(ifrm).contentDocument;
var elRef=(document.all)?ifrmDoc.all[el]:ifrmDoc.getElementById(el);
ifrmWin.nomeFunzione(elRef)
}
codice:
passa('id_iframe','id_elemento');