Skip to content

Instantly share code, notes, and snippets.

@mahemoff
Created September 12, 2011 10:05
Show Gist options
  • Save mahemoff/1210956 to your computer and use it in GitHub Desktop.
Save mahemoff/1210956 to your computer and use it in GitHub Desktop.
jQuery plugin to simulate css3 ellipsis overflow
# http://stackoverflow.com/questions/3404508/cross-browsers-mult-lines-text-overflow-with-ellipsis-appended-within-a-widthhei/3880955#3880955
$.fn.ellipsize = (maxHeight) ->
i=100 # prevent infinite loop
$(this).each () ->
$this = $(this)
while (--i and $this.outerHeight()>50)
$this.text (index, text) -> text.replace /\W*\s(\S)*$/, '...'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment