Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@filiptronicek
Created July 21, 2020 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filiptronicek/a2733c60b4007ac27444b2e50d196908 to your computer and use it in GitHub Desktop.
Save filiptronicek/a2733c60b4007ac27444b2e50d196908 to your computer and use it in GitHub Desktop.
QR code generator in 5 lines or less
let toConvert = $("#content").val();
function generate(text) { $("#qrcode").html(""); $("#qrcode").qrcode(text);}
if($("#content").val() == "") $("#qrcode").html("");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment