display in table *and* canvas examples/basic.html
This commit is contained in:
parent
2b253c58f4
commit
6fda42be9e
1 changed files with 9 additions and 3 deletions
|
|
@ -9,11 +9,17 @@
|
|||
--><script type="text/javascript" src="../src/jquery.qrcode.js"></script>
|
||||
<script type="text/javascript" src="../src/qrcode.js"></script>
|
||||
|
||||
<div id="qrcode"></div>
|
||||
<p>Render in table</p>
|
||||
<div id="qrcodeTable"></div>
|
||||
<p>Render in canvas</p>
|
||||
<div id="qrcodeCanvas"></div>
|
||||
<script>
|
||||
//jQuery('#qrcode').qrcode("this plugin is great");
|
||||
jQuery('#qrcode').qrcode({
|
||||
//render : "table",
|
||||
jQuery('#qrcodeTable').qrcode({
|
||||
render : "table",
|
||||
text : "http://jetienne.com"
|
||||
});
|
||||
jQuery('#qrcodeCanvas').qrcode({
|
||||
text : "http://jetienne.com"
|
||||
});
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Reference in a new issue