Why use a library? You could just do:
var all = document.getElementsByTagName('iframe'), l = all.length; while (l--) all[l].parentNode.removeChild(all[l]);
But if you really feel that you need a library. In jquery this is pretty simple, just find all iframes and delete them.
$(document).ready( function() { $('iframe').remove(); });
source share