How do you disable spellcheck on a textarea if the user pastes their input? Spellcheck="false" only works if the user manually keys their input.
It is a hack but to get it to work in Chrome you could do this:
<textarea spellcheck='false' onpaste="this.value=event.clipboardData.getData('text/plain');return false;"></textarea>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With