JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
    <head>
        <script src="jquery.js" type="text/javascript"></script>
    </head>
<body>

<form action="">
<input type="checkbox" name="nekretnina" value="sve" />Све<br />
<input type="checkbox" name="nekretnina" value="kuca" />Кућа<br />
    <input type="checkbox" name="nekretnina" value="stan" />Стан<br />
<input type="checkbox" name="nekretnina" value="poslovniprostor" />Пословни простор<br />
<input type="checkbox" name="nekretnina" value="vikendica" />Викендица
</form>

</body>
</html>

JavaScript

$(document).ready(function() {
    $(':checkbox[value="sve"]').click(function(){                   
      $(':checkbox[name="nekretnina"]').prop('checked', this.checked);         
    });
});