Joomla 5 Notice

We are pleased to announce that as of October 14, 2025, all of our Joomla extensions are compatible with Joomla 6.

For all who are still updateing from Joomla 3 to Joomla 4: Joomla 4 Migration instructions are available here:

There is a separate Documentation for Visforms for Joomla 4 and for Visforms for Joomla 5 and 6!

Forum

Visforms Subscription user can ask questions in our forum. Please log in with the relevant user first.
Everybody can access the forum for reading.

Please only ask 1 question per topic.

Important information for almost every question:
V1: Which Visforms version is running?
V2: Which Joomla version is running?
V3: Which PHP version is running?

Simple textarea count down

More
4 years 6 months ago - 4 years 6 months ago #7345 by sjb1963
Simple textarea count down was created by sjb1963
If you're looking for a way to add a character counter to a text area, This works:
Code:
jQuery(function ($) {     $("textarea[id='field7']").attr("maxlength", "300");     $("textarea[id='field7']").keyup(function () {         if (this.value.length === 0) {             $("#limit").show();             $("#remaining").hide();         } else {             $("#limit").hide();             $("#remaining").show();         }         if (this.value.length > 300) {             return false;         }         $("[class='count']").html("You have " + (300 - this.value.length) + "/300 characters remaining");     }); });
 
Last edit: 4 years 6 months ago by sjb1963.

More
4 years 6 months ago #7346 by Administrator AV
Replied by Administrator AV on topic Simple textarea count down
Thanks a lot for sharing your really good stuff here!

:idea: I recommend you the new and up-to-date documentation for Joomla 5:
docs.joomla-5.visforms.vi-solutions.de/en/docs/
Most of this also applies retrospectively to Joomla 4.
Please only ask 1 question per topic :-).

:idea: Ich empfehle Dir die neue und aktuelle Dokumentation für Joomla 5:
docs.joomla-5.visforms.vi-solutions.de/docs/
Das meiste gilt rückwirkend auch für Joomla 4.
Bitte immer nur 1 Frage pro Thema stellen :-).

Moderators: Administrator AVAdministrator IV
Powered by Kunena Forum