Skip to content

Instantly share code, notes, and snippets.

@LeoLopesWeb
Created April 11, 2023 14:26
Show Gist options
  • Save LeoLopesWeb/4b480d11ac13cb67f14af3389e0f52e7 to your computer and use it in GitHub Desktop.
Save LeoLopesWeb/4b480d11ac13cb67f14af3389e0f52e7 to your computer and use it in GitHub Desktop.
$("#pix-qrcode .button").click(function () {
var value = $("#getpix").val();
var $temp = $("<input>");
$("body").append($temp);
$temp.val(value).select();
document.execCommand("copy");
$temp.remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment