mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-17 08:30:05 +00:00
12 lines
257 B
HTML
12 lines
257 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body onload="init()">
|
|
<textarea spellcheck="true">blahblahblah</textarea>
|
|
<script>
|
|
function init() {
|
|
document.querySelector("textarea").setAttribute("spellcheck", "false");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|