25 lines
527 B
HTML
25 lines
527 B
HTML
<html>
|
|
<head>
|
|
<title>basic example</title>
|
|
|
|
</head>
|
|
<body>
|
|
<p>
|
|
TODO make a nice looking pure client qrcode generator
|
|
even allow download of the image
|
|
</p>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
|
|
<script type="text/javascript" src="../src/jquery.qrcode.js"></script>
|
|
<script type="text/javascript" src="../src/qrcode.js"></script>
|
|
|
|
<div id="output"></div>
|
|
<script>
|
|
jQuery(function(){
|
|
jQuery('#output').qrcode({
|
|
text : "http://jetienne.com"
|
|
})
|
|
})
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|