Can anyone help me to load response in to iframe using JQuery. I tried following ways.
$.post(url, $("formid").serialize(), function(data) {
$("#myIframe").contents().html(data);
})
I dont want to do
$(".myIframe").attr('src', "myServlet/"+encodedParam);
Because this will expose the data.And also in ie unable to load window with url having than 2038 characters. Thanks in advance.