blob: 5b321dd2cdbcb6eab9faf0b3111ec29e34a1e154 [file] [log] [blame]
// Creates and iframe and appends it to the body element. Make sure the caller
// has a body element!
function createAdFrame() {
let ad_frame = document.createElement('iframe');
document.body.appendChild(ad_frame);
return ad_frame;
}