I'm not sure if this is titled correctly because I don't really understand coding, but I think you may be able to help. I'm able to get this to work in VSC based on the commented out line of code.
Line 1 in the code is referencing qrcode.min.js which is from
https://davidshimjs.github.io/qrcodejs/.
I think the issue is I need to know the correct place to place the 'qrcode.min.js' in the study file so it is referenced. Presently it is in both \graphics\system and Auto Web Upload\graphics\system as that appears to be where all the other .js files are saved.
<script src="qrcode.min.js"></script>
<script type="text/javascript">
var qrdata = SSI_GetValue('testURL')
var qrcode = new QRCode(document.getElementById('qrcode'), {
// text: "https://bing.com",
});
function generateQR() {
var data = qrdata.value;
qrcode.makeCode(data)
}
</script>