Calling click on an element here via jQuery actually calls it 3 times
This only happens in the latest version of jQuery
$("#a").click()
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<div>
<input type="radio" id="a" name="type" checked="checked" value="guest" onclick="alert('a')" />
<label>A</label>
</div>
<div>
<input type="radio" name="type" value="guest" onclick="alert('b')" />
<label>B</label>
</div>