2

I am not able to hyphenate strings using jQuery. It seems there is no library available. I tried this link but failed. Please help if you know how to hyphenate a string in a textarea according to a textarea's width using a jQuery plugin.

Krisztián Balla
  • 19,223
  • 13
  • 68
  • 84
bilal
  • 21
  • 1
  • 2
  • use regular expression. I din't get your question do u want to hypened(`-`) all the text in textarea?? m i right?? please paste your code and desired output – xkeshav May 11 '11 at 12:11
  • Try something like this http://code.google.com/p/hyphenator/downloads/list ? – silent1mezzo May 11 '11 at 12:34

2 Answers2

4

I think Hypher is what you're looking for:

https://github.com/bramstein/hypher

0

As of 2016 there is another JavaScript library available that you could use: https://github.com/ytiurin/hyphen

Compared to Hypher, hy-phen is easier to include on your page, since it does not depend on Node.js or jQuery. You simply have to include the JavaScript file for the library and the pattern file for your desired language using a <script> tag.

Krisztián Balla
  • 19,223
  • 13
  • 68
  • 84