0

How can I disable autocomplete for this textarea using javascript?

<textarea placeholder = "Send your concern..." id = "concern" class = "mako autoOff"></textarea>

.mako{
resize: vertical;
}

1 Answers1

2

You can use autocomplete="off"; you don't have to use css for this.

 <textarea placeholder = "Send your concern..." id = "concern" autocomplete="off"></textarea>
Manjuboyz
  • 6,978
  • 3
  • 21
  • 43