how to disable browser spell-check.
_ spell check _ by kamyar2
Details
Authorkamyar2
LicenseCC Zero
Categoryanywhere
Created
Updated
Size839 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name _ spell check _
@version 20240329.11.14
@namespace https://userstyles.world/user/Kamyar M.
@description how to disable browser spell-check.
@author Kamyar M.
==/UserStyle== */
@-moz-document url-prefix("http://"), url-prefix("https://") {
/*! SCRN */
/*! DATE Mar 2024 */
/*! DTLS how to disable browser spell-check */
/*! HTML */
/*
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-gramm="false"
*/
/*! SCRIPT */
/*
<script>
document.querySelectorAll('input[type=text], textarea').forEach(field => field.spellcheck = false);
</script>
*/
/*! URLs */
/*
https://stackoverflow.com/questions/254712/disable-spell-checking-on-html-textfields
https://www.bing.com/search?pglt=43&q=html+attribute+disable+type+error+check+for+input
*/
/*
​
*/
}