Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/10/2012, 10:35
Avatar de Dradi7
Dradi7
 
Fecha de Ingreso: junio-2008
Ubicación: Peru - Lima
Mensajes: 1.518
Antigüedad: 15 años, 10 meses
Puntos: 220
Respuesta: Reemplazar hipervinculos de texto html

Puedes hacer esto

Código Javascript:
Ver original
  1. $("#Contenido").each(function() {
  2.  
  3.   var attributes = $.map(this.attributes, function(item) {
  4.     return item.name;
  5.   });
  6.  
  7.   var link = $(this);
  8.   $.each(attributes, function(i, item) {
  9.     link.removeAttr(item);
  10.   });
  11. });
__________________
La clave de todo triunfador es eliminar todas sus excusas y sus limitaciones