문장내에 특정 단어를 검색할 경우 그 단어에 하이라이트를 줄 수 있다 [예제] 123456789101112131415161718<style>.text-red { color: red;}</style> <input id="search"><div id="contents">this is a new bar and bar</div> <script>$('#search').keyup(function () { var search = $('#search').val(); $("#contents:contains('"+sea..