Hi,
I have a
jsp that contains Iframe
<iframe src='someAction.do' width='100%' height="100%" frameBorder="0" id="MyFrame"></iframe>
this frame will render my jsp in Iframe.
Now in that jsp , I have a popup which will be shown on a link in jsp.
This popup is nothing but a div which is hidden by default and will be set to display:inline when user clicks the link.
The problem is now when that jsp is rendered in normal window, the popup is shown at point where user clicks
but not that jsp is being in a iframe , the popup is shown far from the link
Please help me .