JSFiddle - React, Tailwind, and code Playground

HTML

<input type="checkbox" />
<input type="checkbox" />
<input type="checkbox" />

JavaScript

$(':checkbox').change(function() {

    if ($(':checkbox:checked').length > 1) {
        alert('More than 1');
    };

});