JSFiddle - React, Tailwind, and code Playground

by Yamini Sontakke

HTML

Email: <input type="textbox" id="email"><br/>
Confirm Email:    <input type="textbox" id="confirmEmail">

JavaScript

$(document).ready(function () {
   $('#confirmEmail').keydown(function (e) {
           if (e.ctrlKey && (e.keyCode == 88 || e.keyCode == 67 || e.keyCode == 86)) {
                 return false;
             }
        });
 });