Здравствуйте! Подскажите, есть возможность на JS завернуть каждую строку текста в span?
Пример, есть такой код:
<div>
Lorem Ipsum is simply
dummy text of the printing
and typesetting industry.
</div>
Превратить его в это:
<div>
<span>Lorem Ipsum is simply</span>
<span>dummy text of the printing</span>
<span>and typesetting industry.</span>
</div>
Спасибо!