Forum Discussion
_anomDiebolt_
7 years agoQrew Elite
It is simple. Just change the "6" to the fid you are trying to count the characters of and paste this code into a new Rich Text Formula Field:
"<span id=QBU_Message></span>" &On the form place this new field atop the field you are counting the characters of so it will not be obscured by the field completion menu that may popup.
"<img src onerror='
$('#_fid_6').on('keyup', function() {
var message = (50 - $(this).val().length) + ' characters remaining';
QBU_Message.innerHTML = message;
});
'>"