Joomla 5 Mitteilung

Wir freuen uns mitteilen zu können, dass seit dem 29. Januar 2024 alle unsere Joomla Erweiterungen mit Joomla 5 kompatible sind.

Für alle die gerade noch von Joomla 3 auf 4 aktualisieren: Anleitungen für die Joomla 4 Migration gibt es hier:

Es gibt nun auch eine eigenständige Dokumentation für Visforms für Joomla 4 und für Visforms auf Joomla 5

Forum

Visforms Subscription Inhaber können in unserem Forum Fragen stellen. Bitte mit dem entsprechenden Benutzer anmelden.
Jeder kann lesend auf das Forum zugreifen.

Bitte stellen Sie nur 1 Frage pro Thema.

Wichtige Angaben für fast jede Frage:
V1: Welche Visforms-Version läuft?
V2: Welche Joomla-Version läuft?
V3: Welche PHP-Version läuft?

Simple textarea count down

Mehr
4 Jahre 4 Monate her - 4 Jahre 4 Monate her #7345 von sjb1963
Simple textarea count down wurde erstellt von 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");     }); });
 
Letzte Änderung: 4 Jahre 4 Monate her von sjb1963.

Mehr
4 Jahre 4 Monate her #7346 von Administrator AV
Administrator AV antwortete auf 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 :-).

Moderatoren: Administrator AVAdministrator IV
Powered by Kunena Forum