I'm sure this is pretty basic, but I still can't find solution that work. Basically I need to display the content in popup from parent at child. I need to display the div 'userinfo' in window in iframe. This is my code:
<!--parent.html->
<iframe src="grid-listing.html"></iframe>
<div id='userinfo'>Name:Ali</div>
<!--grid-listing.html-->
$(document).ready(function ()
{
var windows = $('<div />').kendoWindow({
title: "Edit user info", resizable: false, modal: true, width: 1000,
draggable: false,
close: function () { this.destroy(); }
}).data('kendoWindow').content($("#userinfo")).html());
});