$( '#my-container', camForm.formElement).text(variableValue);

Hi there,

Could someone please explain to me what the following expression means ?

$( '#my-container', camForm.formElement).text(variableValue);

This expression is referenced here
https://docs.camunda.org/manual/7.10/reference/embedded-forms/javascript/lifecycle/#fetching-additional-variables

Thank you in advance,
Steve

This is jQuery code to set the text of the div element with id “my-container”

1 Like