Advertisement
DraKiNs

[COD] Remover Gifs na Página

Jul 13th, 2011
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. javascript:
  2. var imgElemento = document.getElementsByTagName('img');
  3. for(img in imgElemento)
  4. {
  5.     if(imgElemento[img].src.search(".gif") != -1)
  6.     {
  7.         imgElemento[img].src = "http://www.natalhost.com.br/templates/natalhost/img/php.png";
  8.     }
  9. }
  10.  
  11. // Por Bruno da Silva
  12. /// www.ips-team.blogspot.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement