space10-community / conversational-form

Turning web forms into conversations
https://space10-community.github.io/conversational-form/
MIT License
3.8k stars 776 forks source link

Call a function on radio select #395

Open ninoserveone opened 4 years ago

ninoserveone commented 4 years ago

I'd like to know how to call a function when a radio is selected. This works with plain form (without cf) but doesn't seem to work with cf:

<input type="radio" value="writelist" name="option2" cf-label="Write List" onclick="grabName();"/>

What the function does is grab the value of the first question and display it inside a span with id generated when the radio is clicked.

         function grabName() {
        var fname = document.getElementById("name").value;
            document.getElementById("generated").innerHTML = "Hello, " + fname; + "!";

        }