© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Cornelia Klug
Apex
Thank you for this useful blogpost. But how can I give an alert message when a max wordcount is reached? Can you help me?
Louis Moreaux
Oracle APEX developer
In the last example you could add something like:
if (words >= 150) { apex.message.alert( "Limit reached!"); }
You will have to update 150 by your max value
Louis Moreaux Thank you very much, that works
Cornelia Klug I'm glad it works, thank you for reading my blog 🙏