String.prototype.trim = function()
{
return this.replace(/(^\s*)|(\s*$)/gi, "");
}

String.prototype.replaceAll = function(str1, str2)

'JavaScript' 카테고리의 다른 글

파일 업로드 Gmail 흉내내기  (0) 2005.12.18
progress 바 만들기  (0) 2005.12.18
javascript  (0) 2005.12.18
JavaScript Reference  (0) 2005.12.18
이미지 값 카운트만큼 작업하기  (0) 2005.11.28
Posted by 퓨전마법사
,