This topic is: resolved
- This topic has 4 replies, 2 voices, and was last updated 4 years ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Home › Forums › Quform WordPress › Remove choice in radio button
Hi Ally,
I hope you can help me with this problem.
I tried to make it as clear as possible in attachement.
Thanks
Mehmet
You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
Hi Ally,
Thanks a lot for your reply.
This is working to make it clear when I select another choice.
However, on my review page, it is displaying all values I have clicked on:
When I click on radio button 1 and then on radio button 2 – How can I delete value of radio button 1 in my class #kondition1?
// Radio Buttons
$(‘.quform-field-5_93’).click(function () {
$(‘#kondition1’).text($(this).val());
});
$(‘.quform-field-5_235’).click(function () {
$(‘#kondition2’).text($(this).val());
});
$(‘.quform-field-5_245’).click(function () {
$(‘#kondition3’).text($(this).val());
});
You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
This is great and solved my problem, thank you so much Ally