Is it possible using jQuery to create an element and append html content to it without having src attribute specified?
src
The p
Accepted answer doesn't work for me, but following solution works:
$('', { id: 'someId', // other options like frameborder: 0, scrolling: 'no' }).appendTo('#someDiv').on('load', function () { $(this).contents().find('body').append(response); });