Ver Mensaje Individual
  #233 (permalink)  
Antiguo 07/10/2005, 09:44
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 20 años, 11 meses
Puntos: 5
234. Remover Link

P. - ¿Cómo quito o remuevo un link?

R. - Utilizando la siguiente función:

Código PHP:
function QuitarLink(my_link) {
  var 
mylink document.getElementById(my_link);
  if (
mylink) {
   if (
mylink.hasChildNodes()) {
    for(var 
i=0;i<mylink.childNodes.length;i++)
     
mylink.parentNode.insertBefore(mylink.childNodes[i].cloneNode(true),mylink);
    
mylink.parentNode.removeChild(mylink);
   }
  }
 } 
Utilización:

Código HTML:
<a id="id_link" href=http://www.forosdelweb.com target="_blank"><img src="mi_imagen.gif" width="100" height="100"></a>
<input type="button" value="Quitar Link" onClick="QuitarLink('id_link')"> 
Cheers!!
__________________
Saruman

One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them.

Última edición por KarlanKas; 17/10/2005 a las 03:49 Razón: Por favor, poned siempre el número de FAQ