I’ve got this
var fou = foubar.getContent();
where getContent is
Returns a jQuery object wrapping the dialog’s content region – everything inside the frame, excluding the title bar.
Thing is there are textbox values inside of fou I’d like to get at.
I’ve tried this below, but it doesn’t work.
fou.$('#textbox1').val();
How can I select elements of fou?
Try this:
$('#textbox1',fou).val();