demo.html
1 <html> 2 <head> 3 <title>Demo page</title> 4 5 </head> 6 <body> 7 <p> 8 TODO make a nice looking pure client qrcode generator 9 even allow download of the image 10 </p> 11 12 <div id="output"></div> 13 14 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script> 15 <script type="text/javascript" src="../jquery.qrcode.min.js"></script> 16 <script> 17 jQuery(function(){ 18 jQuery('#output').qrcode("http://jetienne.com"); 19 }) 20 </script> 21 22 </body> 23 </html>