posted on January 22, 2019
•
Show version history
How do you identify radio boxes in your javascript when working with repository images saved from forms? The Chrome Developer Console is no longer working correctly in the Thank You Page preview as the elements are converted one more time between showing the preview and saving the actual repository archive and PDF.
Here is the code I use in the browser that works, but I don't know what they become in the repository.
$('.className input:checked').each(function(){ let selectedValue = $(this).val(); });
0
0