I have used jquery ui dialog using IFrame and passed URL to that IFrame. So new page opened in dialog box in Iframe.

After some processing in that dialog box page. I want to pass some data from that dialog box to my page on close event.

Please help.

link|improve this question

45% accept rate
feedback

2 Answers

To access the parent page on an iframe you can use window.parent

link|improve this answer
Yes, but how and where to write that function. When I click on my custom button on my page to close jquery dialog then its working fine but when I click close CROSS sign then it is not calling that function. – Keyur Jan 13 at 11:41
feedback

Don't know if it is the only solution, but you can write the data you want to pass to some invisible element in the close event of the dialog.

Example:

$("..").dialog({...}).bind('dialogclose',function(){
          $("#someInvisibleElement").val(data);
});
link|improve this answer
Can you please give example for above syntax.. dialog({...}) – Keyur Jan 13 at 11:50
Yes, close if fired but how can I get content from dialog box in my main page? – Keyur Jan 13 at 12:02
Its done. var value = $("#pgiFrame").contents().find("#spdata").html(); – Keyur Jan 13 at 12:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.