Hi
I want to send a simple text from a form to a Screen. (form.mobi to resultat.mobi).
Under resultat.mobi I use the following html widget, which is to spend a qr-code. The necessary. Js files I have installed.
________________________________________________________________________
<html>
<head>
<title>basic example</title>
</head>
<body>
<script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js”></script>
<!–<script type=”text/javascript” src=”jquery.qrcode.min.js”></script>
–><script type=”text/javascript” src=”jquery.qrcode.js”></script>
<script type=”text/javascript” src=”qrcode.js”></script>
<p>Render in table</p>
<div id=”qrcodeTable”></div>
<script>
//jQuery(‘#qrcode’).qrcode(“hello”);
jQuery(‘#qrcodeTable’).qrcode({
render : “table”,
text : “${Wortrate}”
});
</script>
</body>
</html>
__________________________________________________________________
At this point (“text: $ {word} rate”) is the text appear from the form, which generates the appropriate QR code. How can I solve that?
or is there another way? The idea is that I can enter by using a form text that is written in code (text : “${Wortrate}”
) in the appropriate line and thus outputs the desired QR Code.
would be very grateful for your help
regards
Dino