Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ConfiForms Form Definition
formNamemyform

tatatextarea

addCounter(formName, formId);Run custom JavaScript

HTML
<script>


function addCounter(formName, formId) {
  var taElem = AJS.$('#' + formId).find('#i_ta');
  if (!taElem.hasClass('cfcounter')) {
   taElem.addClass('cfcounter');
  }
}


</script>