BreakWords

// Cross Browser Word Breaker with jQuery // Usage : $('[search]').breakWords(); (function($) { $.fn.breakWords = function() { this.each(function() { if (this.nodeType !== 1) { return; } if (this.currentStyle && typeof this.currentStyle.wordBreak === 'string') { this.runtimeStyle.wordBreak = 'break-all'; } else if (document.createTreeWalker) { var trim = function(str) { str = str.replace(/^\s\s*..
JaeYa_Lee
'BreakWords' 태그의 글 목록