-
JQuery URL 타입의 문자열 자동 링크 걸기Dev/jQuery 2012. 6. 21. 11:17
url 타입의 문자열이 있을때 자동으로 링크 거는 함수다.
jQuery.fn.autolink = function () {
return this.each( function(){
var re = /((http|https|ftp):\/\/[\w?=&.\/-;#~%-]+(?![\w\s?&.\/;#~%"=-]*>))/g;
$(this).html( $(this).html().replace(re, '<a href="$1">$1</a> ') );
});
}
'Dev > jQuery' 카테고리의 다른 글
jQuery simple rollover (0) 2012.07.24 jQuery 스타일 변경 (0) 2012.06.01 DIV 태그 클릭하면 DIV 숨기기 (0) 2009.10.13 jQuery 다운로드 (0) 2009.10.09