Answer the question
In order to leave comments, you need to log in
It works without $(document).ready, but not with it. Why?
<div class="isMulti">
<label class="container">
<input type="radio" name="isMulti" value="single" checked="">
<span class="point"></span>
</label>
<div>Single answer</div>
</div>
<div class="isMulti">
<label class="container">
<input type="radio" name="isMulti" value="multi">
<span class="point"></span>
</label>
<div>Multi answer</div>
</div>
$(document).ready(function {
$('.isMulti').click(function() {
$(this).find('input').prop('checked', true);
});
});
Answer the question
In order to leave comments, you need to log in
$(document).ready(function {
...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question