Удаление фреймов, flash, и других объектов со страницы

Функция на JavaScript, удаляющая из документа все фреймы, flash и прочие объекты. Может быть полезно если Ваш сайт заразили какой-нибудь гадостью.

var embeds = document.getElementsByTagName("embed");
while (embeds.length)
	embeds[0].parentNode.removeChild(embeds[0]);
var iframes = document.getElementsByTagName("iframe");
while (var cx = 0; cx < iframes.length)
	iframes[0].parentNode.removeChild(iframes[0]);
var objects = document.getElementsByTagName("object");
while (objects.length)
	objects[0].parentNode.removeChild(objects[0]);
undefined;

Поблагодарить автора

3 Responses to Удаление фреймов, flash, и других объектов со страницы

  1. Проверил, ничего не удаляет.

    Данная функция точно работает?

  2. Проверил, ничего не удаляет данная функция! Вы ее сами тестили?

Оставить комментарий

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>