insert qr code into edit form ? ? ?
Posted: Fri Nov 19, 2021 9:59 pm
please I nicely need to enter the QR code anywhere in the form . . .
in an external html file (see below) it works
Thank you for the inspiration Honza
=================================================================
<!DOCTYPE html>
<html>
<head>
<title>QR Code Generate</title>
<!-- (A) LOAD QRCODEJS LIBRARY -->
<!-- https://cdnjs.com/libraries/qrcodejs -->
<!-- https://github.com/davidshimjs/qrcodejs -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/ ... "></script>
</head>
<body>
<!-- (B) GENERATE QR CODE HERE -->
<div id="qrcode"></div>
<!-- (C) CREATE QR CODE ON PAGE LOAD -->
<script>
var qrcode = new QRCode(document.getElementById("qrcode"), "https://code-boxx.com/");
</script>
</body>
</html>
in an external html file (see below) it works
Thank you for the inspiration Honza
=================================================================
<!DOCTYPE html>
<html>
<head>
<title>QR Code Generate</title>
<!-- (A) LOAD QRCODEJS LIBRARY -->
<!-- https://cdnjs.com/libraries/qrcodejs -->
<!-- https://github.com/davidshimjs/qrcodejs -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/ ... "></script>
</head>
<body>
<!-- (B) GENERATE QR CODE HERE -->
<div id="qrcode"></div>
<!-- (C) CREATE QR CODE ON PAGE LOAD -->
<script>
var qrcode = new QRCode(document.getElementById("qrcode"), "https://code-boxx.com/");
</script>
</body>
</html>