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.
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()); });
This is great and solved my problem, thank you so much Ally