this may be a weird question but I have several radio button groups with labels for each group. when one radio button group is filled i want to highlight the label of the next group to be filled in sequence. So some how when the first radio button group is filled it will show the next group to be filled by highlighting the label of it. Please tell put me on the right direction with CSS and Coding.Thank you
Share
you have to use javascript to do something like this. First you have to create your radiobutton with incremental names like:
If you use jQuery for example you can listen for changes:
This function attach an event listener to each input element when the value changes it takes the current group number from the element that generated the user and put the focus on the first element in the next group. I haven’t tried this but it should work. I’m not sure that input of type radio fires change event but you can use the click event in the same way
Hope it helps