Get started with jquery-spellchecker CDN
MIT licensed
Plugin: JQuery Spellchecker adds real-time spell checking to HTML textareas using jQuery.
Tags:- jquery
- spellcheck
Stable version
Copied!
How to start using jquery-spellchecker CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with jquery-spellchecker CDN - cdnhub.io</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/base/jquery-ui.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.cdnhub.io/jquery-spellchecker/0.2.3/js/jquery.spellchecker.min.js"></script>
<script>
$(function() {
$("#textarea").spellchecker();
});
</script>
</head>
<body>
<textarea id="textarea" rows="10" cols="50">This is a textarea for testing the jquery-spellchecker plugin.</textarea>
</body>
</html>
Copied!
Copied!
Copied!
Copied!