Is there a way I can turn this obnoxiously long line of text into a paragraph?
Before:
$('.ContText-1').text('For a business to thrive, it needs a team of people who are dedicated to its success. Paul Lister, Bryan Jeter, and Bryan Lloyd are committed to being a part of that team for each of their clients.');
After:
$('.ContText-1').text('
For a business to thrive, it needs a team of people who are dedicated to its
success. Paul Lister, Bryan Jeter, and Bryan Lloyd are committed to being a part of
that team for each of their clients.
');
If I run the paragraph one I get this error: Uncaught SyntaxError: Invalid or unexpected token
Its referencing to the single quotation mark after the (
.