$('textarea').highlightTextarea({ words: ['lorem ipsum', 'VULPUTATE'], caseSensitive: false });
$('textarea').highlightTextarea({ words: ['Lorem ipsum', 'vulputate'], resizable: true });
$('textarea').highlightTextarea({ words: ['{(.+?)}'] });
$('textarea').highlightTextarea({ words: [{ color: '#ADF0FF', words: ['Lorem ipsum', 'vulputate'] }, { color: '#FFFF00', words: ['Donec'] }] });
$('textarea').highlightTextarea({ ranges: [{ color: '#ADF0FF', start: 0, length: 10 }, { color: '#FFFF00', ranges: [[40,45], [50,55]] }] });
<script> $('textarea').highlightTextarea({ words: ['Lorem ipsum', 'vulputate'], id: 'demoCustom' }); </script> <style> #demoCustom mark { padding:0 3px; margin:-1px -4px; border-radius:0.5em; border:1px solid pink; } </style>
<script> $('#demo10').highlightTextarea({ ranges: [{ class: 'blue', start: 0, length: 2 }, { color: '#FFFF00', ranges: [[12, 15]] }], id: 'demo10-wrap' }); </script>
<script> $('#demo11').highlightTextarea({ ranges: [{ color: '#FFFF00', ranges: [[0, 1], [10, 11], [21, 22], [24, 25]] }] }); </script>