Skip to content

Instantly share code, notes, and snippets.

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 kcollasarundell/912a3c037b17fb7167e311f69693ccaa to your computer and use it in GitHub Desktop.
Save kcollasarundell/912a3c037b17fb7167e311f69693ccaa to your computer and use it in GitHub Desktop.
<script src="/scripts/qrcode.js/qrcode.min.js"></script>
<script type="text/javascript">
var qrs = document.getElementsByClassName("qrcode")
Array.from(qrs).forEach(element => {
new QRCode(element,{
height: window.innerHeight*0.5,
width: window.innerHeight*0.5,
border: 4,
text: "linkhere",
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment