How can I remove text selection in input type=text . After all, when imitating the view focus on this object, the text in it is automatically highlighted. How to remove it?

    1 answer 1

    Remove selection from text

     <textarea onMouseOver="this.select();" onMouseOut="this.value +=' '; this.value = this.value.slice(0, -1);">какой-либо текст</textarea>