How To Pass A Parameter From Iframe To Iframe? January 23, 2024 Post a Comment I have a parent jsp called parent.jsp. This spawns an iframe called iframe1, which in turn frames an iframe called iframe2 . From parent.jsp : CopyAnd later call createSecondIframe with myNumbercreateSecondIframe(myNumber) CopySolution 2: You are not using the myNO variable but are specifying myNO as a string. Try thiscreateSecondIframe(myNumber) { ifrm.setAttribute("src", "iframe2.jsp?myNO=" + myNumber); } Copy Share Post a Comment for "How To Pass A Parameter From Iframe To Iframe?"
Post a Comment for "How To Pass A Parameter From Iframe To Iframe?"