$("#btnPreview").click(function () {
var data = UserData();
model = data.modelnew;
FamilyArray = data.familynew;
$.ajax({
url: "/CareApplication/Create",
type: 'POST',
contentType: 'application/json',
async: false,
data: JSON.stringify({ model: model, Family: FamilyArray, flag: "1" }),
success: function (data) {
var myPos = { my: "center top", at: "center top+100", of: window };
var $dialog = $('<div style="overflow-y: hidden" ></div>')
.html('<iframe marginwidth="0" marginheight="0" frameborder"=0" src="' + data + '" width="100%" height="100%" ></iframe>')
.dialog({
autoOpen: false,
modal: true,
height:650,
width: 1200,
title: "Preview",
position: myPos,
});
$dialog.dialog('open');
}
});
window.scrollTo(0, 0);
});