19 lines
417 B
HTML
19 lines
417 B
HTML
<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>
|
|
|
|
<div id="qrcode"></div>
|
|
<script>
|
|
//jQuery('#qrcode').qrcode("this plugin is great");
|
|
jQuery('#qrcode').qrcode({
|
|
render : "table",
|
|
text : "http://jetienne.com"
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|