My page structure is like
I have a html
page which consist of a jQuery
Dialog.
Within the jQuery
Dialog a screen opens within iFrame
.
Now the problem I am facing is - I want to close jQuery
Dialog by clicking a button within iFrame
. (For e.g. If my iFrame source is Google.com, then on click of search button my dialog box should close)
So, Can I write close call handling click event of search button in $(document).ready(function()
of my html page?
Note :- iframe source is not accessible.
If no, then what are the other possible option to do it?
Thanks in Advance.