Skip to content

Instantly share code, notes, and snippets.

@riix
Created July 24, 2012 05:23
Show Gist options
  • Save riix/3168200 to your computer and use it in GitHub Desktop.
Save riix/3168200 to your computer and use it in GitHub Desktop.
말 줄임 ellipsis
(function($) {
$.fn.strCut = function(settings) {
var config = {
max : 10
};
if (settings) $.extend(config, settings);
this.each(function() {
$(this).css('white-space','nowrap');
if ($(this).text().length > config.max) {
$(this).text($(this).text().substr(0, config.max-3));
$(this).append('...');
}
});
};
})(jQuery);
$(function(){
$('h3').strCut({ max: 6 });
$('h4').strCut();
});
<h3>가나다라마바사 아에이어우헤헤헤</h3>
<h4>가나다라마바사 아에이어우헤헤헤</h4>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment