-
url 타입의 문자열이 있을때 자동으로 링크 거는 함수다. jQuery.fn.autolink = function () { return this.each( function(){ var re = /((http|https|ftp):\/\/[\w?=&.\/-;#~%-]+(?![\w\s?&.\/;#~%"=-]*>))/g; $(this).html( $(this).html().replace(re, '$1 ') ); }); }