私はこれを作ろうとしています:
<td class="Monthly Status-cell">/fileid=XXXX</td>
表示
http://www.domain.com/fileid=XXXX
私のコードの何が問題なのか教えていただけますか?
$('.Status-cell').replaceWith(function() {
var url = $.trim($(this).text());
return '<a href="' + url + '" target="_blank">' + url + '</a>';
});
ありがとう!