2017-02-14 02:13:59 +01:00
|
|
|
jQuery.fn.autolink = function() {
|
2017-02-24 12:49:04 +01:00
|
|
|
var re = /((([A-Za-z]{3,9}:(?:\/\/)?)(?:[\-;:&=\+\$,\w]+@)?[A-Za-z0-9\.\-]+|(?:www\.|[\-;:&=\+\$,\w]+@)[A-Za-z0-9\.\-]+)((?:\/[\+~%\/\.\w\-]*)?\??(?:[\-\+:=&;%@\.\w]*)#?(?:[\.\!\/\\\w]*))?)/g;
|
|
|
|
return this.find('*').contents()
|
|
|
|
.filter(function () { return this.nodeType === 3; })
|
|
|
|
.each(function() {
|
|
|
|
$(this).each(function() {
|
|
|
|
if (re.test($(this).text()))
|
|
|
|
$(this).replaceWith(
|
|
|
|
$("<span />").html(
|
|
|
|
this.nodeValue.replace(re, "<a href='$1'>$1</a>")
|
|
|
|
)
|
|
|
|
);
|
|
|
|
});
|
2017-02-14 02:13:59 +01:00
|
|
|
});
|
|
|
|
};
|