I want to disable spellchecking in Chrome/Safari using CSS. In HTML spellcheck=\"false\" works but I want to do this in a way that will affect all input fields.
spellcheck=\"false\"
use jQuery. Something like:
$(document).ready( function() { $("input[type='text'], textarea").attr('spellcheck',false); });
This should search for all textbox's and teatarea's on the page and add the attribute spellcheck="false" to them.
spellcheck="false"