VSpell cho phép bạn sử dụng dịch vụ Kiểm tra Chính tả cho website của bạn, hoàn toàn miễn phí. Bạn có thể tham khảo trang mẫu ở đây.
Đây là các bước để thêm chức năng kiểm tra chính tả Việt ngữ vào trang web của bạn:
<script> // VSpellPopup.html, change to refect the correct location on your site var _spellCheckUrl = "VSpellPopup.html"; var _popupWindow; var _spellData = {}; function openVSpell() { // get text for spell check _spellData.text = document.getElementById('spellInput').value; _popupWindow = window.open(_spellCheckUrl, 'VSpellPopup'); if (window.focus) { _popupWindow.focus(); } } function closeVSpell() { // update your spell checked text here document.getElementById('spellInput').value = _spellData.text; _popupWindow.close(); } </script>