Files
wificode/public/jquery-qrcode/examples/demo.html
Ivan Carlos de Almeida 3c42ca9668
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 10m11s
main beautify
2025-12-13 02:29:42 -03:00

25 lines
463 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Demo page</title>
</head>
<body>
<p>
TODO make a nice looking pure client qrcode generator
even allow download of the image
</p>
<div id="output"></div>
<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>
jQuery(function(){
jQuery('#output').qrcode("http://jetienne.com");
})
</script>
</body>
</html>