i am new to this forum
i do have a problem if any one solved means i would be great full to them .
as my problem is i have a jsp page . in that page i have an iframe
which i had disable by style:none. i had given the iframe src = a blank page.in that blank page iam setting the values,which was sending some values like action etc.. and my problem is that i frame is not submitting in FireFox.
my jspcode:-
var objframe = document.getElementById('iframeVerification');
var frmReport1 =iframeVerification.getObject('frmReport');;
frmReport1.action="/Screening/orderpackagedetails.do";
frmReport1.clientorderid.value=clientorderid;
frmReport1.reportno.value=rid;
frmReport1.tabname.value=Tabname;
frmReport1.screen.value="ApplicantInfo";
frmReport1.appsstatus.value=appsstatus;
frmReport1.CLIENTDETAILID.value=CLIENTDETAILID;
frmReport1.submit();
- var objframe = document.getElementById('iframeVerification');
- var frmReport1 =iframeVerification.getObject('frmReport');;
-
- frmReport1.action="/Screening/orderpackagedetails.do";
- frmReport1.clientorderid.value=clientorderid;
- frmReport1.reportno.value=rid;
- frmReport1.tabname.value=Tabname;
- frmReport1.screen.value="ApplicantInfo";
- frmReport1.appsstatus.value=appsstatus;
- frmReport1.CLIENTDETAILID.value=CLIENTDETAILID;
- frmReport1.submit();
1)iframeVerification is my iframe
2) and i am calling a method getObject(which is in blank page) by iframe.
3) i want to disply blankpage in this iframe.
in IE it is working and in FireFoe is not working.