Hi I have list (ul) and in it some "li".
With Javascript (jQuery) how do I detect when line breaks and add some chars on beginning.
So for example:
I have a very looooong text in 200px width li.
Result is:
I have a very looooong text
in 200px width li.
And I want to add " + " on the beginning of new line => result:
I have a very looooong text
+ in 200px width li.
thx