Custom Format Script - Bullet Points in Text Field
Hi everyone,
I'm trying to make answers in a multi-line text field format into bullet points. I've used this script posted elsewhere on the forum that works:
if(event.value != "") {
event.value = event.value.split(/\r|\n/).map(function(a){return "\u2022 " + a}).join("\n");
}
However, I was wondering if there's a way for the user to see the bullet points when they type their answer, as they only appear after they click out of the text field.
Best
