Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

Word Count result while typing, rather than on exit

Avatar

Level 2

I have a form where a field is limited as to the number of words.

I found a JavaScript that does what I need as far as giving me a Word Count, however it will only show the results on exit, not while the user is typing.

I've tried changing the event to "change" or "enter" and other options, but that breaks the code.

How can I fix it so it gives me live updates?

 

Any help would be greatly appreciated.

Thanks.

 

The code is currently:

var cnt = word_count(this.rawValue);
	WordCountResult.rawValue = cnt.toString();


function word_count(textParam)
{
	textParam = textParam.replace(/^\s*|\s*$/g,'');
  	if (textParam) 
  		return textParam.split(/\s+/).length;
	else
  		return 0;
}
1 Accepted Solution

Avatar

Correct answer by
Employee

Place your function in the change event. Then call as word_count(xfa.event.fullText); this.rawValue will not work in this context.

View solution in original post

4 Replies

Avatar

Employee Advisor

Are you rendering as HTML or pdf?

Avatar

Level 2
As a PDF

Avatar

Correct answer by
Employee

Place your function in the change event. Then call as word_count(xfa.event.fullText); this.rawValue will not work in this context.

Avatar

Level 2
Thank you! this worked!