A
A
AntropovP2018-03-28 15:17:15
JavaScript
AntropovP, 2018-03-28 15:17:15

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

2 answer(s)
L
Lander, 2018-03-28
@AntropovP

$(document).ready(function {
...

Not confused by the lack of parentheses after function ?

T
Talyan, 2018-03-28
@flapflapjack

why checked=""?
you just need to write checked without any "="

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question