Adsense
Popular Posts
- Code update from PHP 7.4 to PHP 8.1 - PhpSpreadsheet
- MySQL workbench -"Could not decrypt password cache"
- Code update from PHP 7.4 to PHP 8.1 - Worksheet/Iterator.php
- Rendering HTML tags inside textarea
- axios handle blob type data
- Unix Utils and wget in Windows
- increase mysql query speed
- Setup vi syntax for PHP
- EXCEL return to the next line in the same cell
- Get WAMP running on EC2
Thursday, February 15, 2018
Spell Check in input box and textarea in Firefox and Chrome
Default spell check for textarea tag is true, but false is for input tag in HTML form.
To enable spellcheck in input text box in HTML form
<input id="title0" spellcheck="true" value="1"/>
To enable spellcheck in textarea in HTML form
<textarea> </textarea>
or
<textarea spellcheck="true"> </textarea>
To disable spellcheck in textarea in HTML form
<textarea spellcheck="flase"> </textarea>
After enable spellcheck , red underlines will be shown below the incorrect words.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment