VSpell allow you to use the Vietnamese spell check on your website. Here is an external webpagethat uses VSpell.
To use VSpell in your website, please follow the below steps.
<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>