Skip to content

Instantly share code, notes, and snippets.

@lazyjerry
Created August 6, 2020 15:59
Show Gist options
  • Save lazyjerry/e6e54405714840cf72553704211f53d8 to your computer and use it in GitHub Desktop.
Save lazyjerry/e6e54405714840cf72553704211f53d8 to your computer and use it in GitHub Desktop.
<script>
/**/
(function($){
var url1 = /(^|&lt;|\s)(www\..+?\..+?)(\s|&gt;|$)/g,
url2 = /(^|&lt;|\s)(((https?|ftp):\/\/|mailto:).+?)(\s|&gt;|$)/g,
linkifyThis = function () {
var childNodes = this.childNodes,
i = childNodes.length;
while(i--)
{
var n = childNodes[i];
if (n.nodeType == 3) {
var html = $.trim(n.nodeValue);
if (html)
{
html = html.replace(/&/g, '&amp;')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;')
.replace(url1, '$1<a href="http://$2">$2</a>$3')
.replace(url2, '$1<a href="$2">$2</a>$5');
$(n).after(html).remove();
}
}
else if (n.nodeType == 1 && !/^(a|button|textarea)$/i.test(n.tagName)) {
linkifyThis.call(n);
}
}
};
$.fn.linkify = function () {
return this.each(linkifyThis);
};
})(jQuery);
/**/
$('ID').linkify();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment