Skip to content Skip to sidebar Skip to footer

Inline Disabling Of Firefox Spellcheck?

I researched this a while ago and can't remember how to do it. I want to be able to prevent Firefox from running it's spell-checking functionality on certain input fields from with

Solution 1:

Talk about having a big "duh" moment! I found the answer after some trial & error:

<textareaspellcheck="false"></textarea>

Solution 2:

add the attribute using JQuery $('.textarea_className').attr('spellcheck',false);

This will allow you to return a valid XHTML mark up. =)

Post a Comment for "Inline Disabling Of Firefox Spellcheck?"