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
You should put the iframe inside of a div element.
//your iframe
Then use jQuery to remove the iframe.
$('#kk').click(function(){ $(this).html(""); });
This is a possible solution.