“Agregar enlace al texto usando SPAN HTML” Código de respuesta

Agregar enlace al texto usando SPAN HTML

var href = jQuery('#linkChange').html();
var link = "<a href='"+href+"' target='_blank'>"+href+"</a>";

jQuery('#linkChange').replaceWith(link);
Comfortable Cod

Agregar enlace al texto usando SPAN HTML

<script type="text/javascript">
    $(document).ready(function(){
        $('td span').each(function(){
            $(this).html("<a href='" + $(this).html() + "' />" + 
                $(this).html() + "</a>");
        });
    });
</script>
Comfortable Cod

Agregar enlace al texto usando SPAN HTML

<a href="http://www.domain.com/about" target="_blank">http://www.domain.com/about</a>
Comfortable Cod

Agregar enlace al texto usando SPAN HTML

<span id="linkChange">http://domain.com</span>
Comfortable Cod

Respuestas similares a “Agregar enlace al texto usando SPAN HTML”

Preguntas similares a “Agregar enlace al texto usando SPAN HTML”

Más respuestas relacionadas con “Agregar enlace al texto usando SPAN HTML” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código