Benjamin Sloutsky
Benjamin Sloutsky

Reputation: 63

How can I disable autocomplete for this text area using js?

How can I disable autocomplete for this textarea using javascript?

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

.mako{
resize: vertical;
}

Upvotes: 0

Views: 774

Answers (1)

Manjuboyz
Manjuboyz

Reputation: 7066

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

 <textarea placeholder = "Send your concern..." id = "concern" autocomplete="off"></textarea>

Upvotes: 2

Related Questions