Edit in JSFiddle

$(document).ready(function () {
    $("#start").bind("cut copy paste", function (e) {
        alert("The operation '" + e.type + "' is not allowed !");
        return false;
    });
});