I'am trying to pass a variable/ value from the fancybox iframe to the parent window without success.
Fancybox is launched from a link with
class="fancybox fancybox.iframe"
My code in the fancybox.iframe is:
$(document).ready(function(){
$('.insert_single').click(function(){
var test = $('.members_body').find('{row.U_USERNAME}');
setTimeout(function(){ parent.$.fancybox.close();},300);return true;
});
});
Where '{row.U_USERNAME}' is the username to find in the iframe.
Then, in the parent there's the following code:
$(document).ready(function(){
$('.fancybox').fancybox(
{
openEffect:'fade',
openSpeed:500,
afterClose: function(){
alert($(".fancybox-iframe").contents().find(test));
$('#form input[name=username]').val()(test);return false;
}
}
);
});
But when the fancybox is closed, there's no alert showing up with the variable "test", nor the variable is showing up as a value or as a text in the input field of the form.
I've read and tried various solutions found here on stackoverflow without success.
Thanks in advance for helping
EDIT
Here's an Example
When the fancybox is closed the iframe is removed from the document. So you must use
beforeClose
event instead ofafterClose
JSFiddle: http://jsfiddle.net/NXY7Y/1/
EDIT:
I edited your jsfiddle (http://jsfiddle.net/NXY7Y/9/). Update is in this link http://jsfiddle.net/NXY7Y/13/
Main page javscript:
No need to use
afterClose
orbeforeClose
events. Just access the parent functionsetSelectedUser
from the iframe on link click event like this:Some clarifications :
.find()
to find elements by selector (you are trying to find a variable.find(test)
, which is not a valid format)..val()
to get the contents of aninput
field or.val(new_value)
to set the contents of aninput
field.html()
or.text()
to get the contents of any element other thaninput
,example: having this html code
... and this jQuery code
...
temp
will returnhola
.On the other hand, if you have control over the iframed page and it's under the same domain than the parent page, then you may not need to set any jQuery in the child page.
so, having this html in the child (iframed) page for instance
You could set this jQuery in your parent page to get the contents of any clicked element in your child page :
Notice that we declared the var
_tmpvar
globally so we can use it within different callbacks.See JSFIDDLE