JSFiddle - React, Tailwind, and code Playground

HTML

<td><label for="startClientFromWebEnabled">Client Launch From Web:</label></td>
<td><input type="checkbox" id="startClientFromWebEnabled" name="startClientFromWebEnabled" data-bind="checked: StartClientFromWebEnabled, enable: IsEditable"  /></td>

JavaScript

$('label[for="startClientFromWebEnabled"]').mousedown(function(e) { 
        console.log('mouse down!!')
        e.preventDefault();
        e.stopPropagation();
        e.stopImmediatePropagation();
        return false;
    });