I am trying to remove iFrame tags in my documents. This is the function. But it don\'t seem to work. Here is my sample code
Pure Javascript code:
document.querySelectorAll('iframe').forEach( function(elem){ elem.parentNode.removeChild(elem); });