[jQuery] ajax call to load iframe

[jQuery] ajax call to load iframe


I did some test in order to load div using ajax call:
jQuery.ajax({
type: "get",
url: Purl+separator+new Date().getTime() ,
async: true,
dataType: "html",
success: function(data)
{
jQuery("#"+fTarget).get()[0].innerHTML=data;
}
});
However I don't know how load content into iFrame....using ajax call.
Anyone could help me?