Attributespellcheck digunakan untuk menentukan apakah teks pada element perlu di cek tata bahasanya atau tidak. Didalam Tampilan browser jika attribute ini digunakan biasanya teks yang dianggap salah, akan diberi tanda garis merah bergelombang atau sejenisnya.
Attribute Value
Attribute
Value
Deskripsi
spellcheck
true dan false
menentukan teks perlu diperiksa atau tidak perlu diperiksa tata bahasanya
Contoh Attribute spellcheck
<textarea spellcheck="true">
Blogger.com - Createeeee a unique and beautiful blog. It's easy and free.
</textarea>
<textarea spellcheck="false">
Blogger.com - Createeeee a unique and beautiful blog. It's easy and free.
</textarea>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Demo Triksonic</title>
</head>
<body>
<textarea spellcheck="true">
Blogger.com - Createeeee a unique and beautiful blog. It's easy and free.
</textarea>
<textarea spellcheck="false">
Blogger.com - Createeeee a unique and beautiful blog. It's easy and free.
</textarea>
<p>
Klik pada masing masing textarea,
dan perhatikan pada teks yang salah <b>Createeeee</b>
</p>
<p>
Demo ini untuk browser yang pengaturan browsernya menggunakan bahasa inggris.
</p>
<p>
Jika anda menggunakan Bahasa Indonesia, ganti isi textarea dengan Kalimat yang berbahasa Indonesia
</p>
</body>
</html>
<div contenteditable spellcheck="true">
Blogger.com - Createeeee a unique and beautiful blog. It's easy and free.
</div>
<div contenteditable spellcheck="false">
Blogger.com - Createeeee a unique and beautiful blog. It's easy and free.
</div>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Demo Triksonic</title>
</head>
<body>
<div contenteditable spellcheck="true">
Blogger.com - Createeeee a unique and beautiful blog. It's easy and free.
</div>
<div contenteditable spellcheck="false">
Blogger.com - Createeeee a unique and beautiful blog. It's easy and free.
</div>
<p>
<strong>KLIK</strong> dan edit pada masing masing editable diatas,
dan perhatikan pada teks yang salah (<b>Createeeee</b>)
</p>
<p>
Demo ini untuk browser yang pengaturan browsernya menggunakan bahasa inggris.
</p>
<p>
Jika browser anda menggunakan Bahasa Indonesia, ganti isi editable di editor dengan Kalimat yang berbahasa Indonesia
</p>
</body>
</html>