Greetings,
I'm looking into using a different RichText control than K2's out of the box. (performance implications when 40+ are on a form)...
I need some assistance with the javascript that can properly set the internalHTML of a K2 textarea control so that it's available for later use by K2 rules.Â
For instance.. this will set a value in datalabels .. $(" name='txt_FName']").SFCLabel('option', 'text', 'Vermaniac');
Â
What's the similar code for a text area? It appears that textareas don't have a name attribute. And if I use document.getElementById('<textarea id>').innerHTML = 'This is something'; the value will get into the DOM, but running a rule to then read the value doesn't return "This is something"