Clipboard cut and copy native
var input = $('input').first(); input.on('focus', function() { input.select(); //select input content document.execCommand("cut"); //or "copy" });