$('.form-control').on('keypress', function() {
$('#action').fadeIn(function() {
$(this).fadeOut();
});
});
$('.mybutton').on('click', function() {
var Paste = $(this).data('paste');
$('.form-control').val($('.form-control').val() + Paste).trigger('keypress');
});
});