Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

qrcode.js

<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js" ></script>
Comment

node qrcode

npm install --save qrcode
Comment

qrcode js

var qrcode = new QRCode("test", {
    text: "http://jindo.dev.naver.com/collie",
    width: 128,
    height: 128,
    colorDark : "#000000",
    colorLight : "#ffffff",
    correctLevel : QRCode.CorrectLevel.H
});
Comment

qrcode js

<div id="qrcode"></div>
<script type="text/javascript">
new QRCode(document.getElementById("qrcode"), "http://jindo.dev.naver.com/collie");
</script>
Comment

PREVIOUS NEXT
Code Example
Javascript :: react lottie 
Javascript :: iterate through object javascript 
Javascript :: javascript get fibonacci number 
Javascript :: html select specify deafult select by js variable 
Javascript :: javascript find the second highest Element from array 
Javascript :: react dom cdn 
Javascript :: javascript NEGATIVE_INFINITY 
Javascript :: how to write a comment in react js 
Javascript :: js hoisting 
Javascript :: s3 private image getobject react js 
Javascript :: JavaScript querySelector - By ID 
Javascript :: how to find the particular key and value in json in javascript 
Javascript :: react functional components 
Javascript :: how to make unclicable legend chartjs 
Javascript :: javascript lowest number 
Javascript :: jquery selector id ends with 
Javascript :: react arrow funvtion 
Javascript :: cypress graphql request 
Javascript :: angular autocomplete displaywith 
Javascript :: print first n prime numbers in javascript 
Javascript :: body-parser vs express.json 
Javascript :: capture keystrokes in javascript 
Javascript :: javascript Set Intersection Operation 
Javascript :: js reverse linked list 
Javascript :: prevent redirect javascript 
Javascript :: sort function in react js 
Javascript :: deploy react app 
Javascript :: class constructor javascript 
Javascript :: jquery get text of element without child elements 
Javascript :: get blob from file javascript 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =