When I use prototype.find it is not focusing on the text area. Text area scroll bar does not scroll when selecting with window.find. How do I focus on “protecting nature” in the text area?
<!DOCTYPE html>
<html>
<body>
<textarea id="positivity" cols="50" rows="10" value="">Happiness
Love
Protect Nature
Help Brother
</textarea>
<script>
window.addEventListener('load', function () {
window.find('Protect Nature');
}, false);
</script>
</body>
</html>
Note browser search gives focus to textarea, but I can't use it. Please use vanilla javascript, and preferably a method supported by android browsers. Thanks in advance!