Counter
Add a character and word counter.
Code
<!DOCTYPE html>
<html>
<head>
<title>Redactor X</title>
<meta charset="utf-8">
<!-- css -->
<link rel="stylesheet" href="/your-folder/redactorx.css" />
</head>
<body>
<!-- element -->
<textarea id="entry">...</textarea>
<!-- js -->
<script src="/your-folder/redactorx.js"></script>
<script src="/your-folder/plugins/counter.js"></script>
<!-- call -->
<script>
RedactorX('#entry', {
plugins: ['counter']
});
</script>
</body>
</html>