We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
generated
function grabName() { var fname = document.getElementById("name").value; document.getElementById("generated").innerHTML = "Hello, " + fname; + "!"; }
The text was updated successfully, but these errors were encountered:
jenssogaard
No branches or pull requests
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.The text was updated successfully, but these errors were encountered: