revision:
The spellcheck attribute specifies whether the element is to have its spelling and grammar checked or not.
The following can be spellchecked: text values in input elements (not password), text in <textarea> elements, text in editable elements
The spellcheck attribute is part of the global attributes and can be used on any HTML element.
<element spellcheck="true | false"></element>
true: the element is to have its spelling and grammar checked;
false: the element is not to be checked.
This is a praggagraph. It is editable. Try to change the text.
First name:
<p class="spec" contenteditable="true" spellcheck="true"> This is a praggagraph. It is editable. Try to change the text.</p> <p class="spec">First name: <input type="text" name="fname" spellcheck="true"></p>
Did you knoww you can click me to edit my contentz?
Did you knoww you can click me to edit my contentz
<p class="spec" contenteditable="true" spellcheck="true">Did you knoww you can click me to edit my contentz?</p> <p class="spec" contenteditable="true" spellcheck="false">Did you knoww you can click me to edit my contentz</p>
type something here
<div> <input type="text" spellcheck="true" placeholder="type something here"> <p contenteditable="true" spellcheck="true">type something here</p> </div>