JSFiddle - React, Tailwind, and code Playground

by yijiang

HTML

<input type="text" id="live" />
<input type="text" id="bind" />
<input type="text" id="normal" />

JavaScript

$('#live').live('focus', function() {
    return false;
});

$('#bind').focus(function() {
    return false;
});