Look at the bottom of the source code of the page where youโll select โNone of the aboveโ.
<script type="text/javascript"> $(document).ready(function() { $('#comment').hide(); $('#specify').click(function() { $('#comment').toggle(); $('textarea').val(''); }); $('input[name="ResolveWay_7"]').change(function() { $('input[name!="ResolveWay_7"]').removeAttr('checked'); $('textarea').val(''); $('#comment').hide(); }); $('input[name!="ResolveWay_7"]').click(function() { $('input[name="ResolveWay_7"]').removeAttr('checked'); }); }); </script>
There are 2 places where it says:
$('input[name="ResolveWay_7"]').removeAttr('checked');
James source share