-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
35 lines (28 loc) · 856 Bytes
/
Copy pathscript.js
File metadata and controls
35 lines (28 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// ======================
// POLL PROJECT
// ======================
document.getElementById("yesBtn").onclick = function () {
document.getElementById("heading").innerHTML =
"Yes! JavaScript Is Easy If You Practice Daily.";
};
document.getElementById("noBtn").onclick = function () {
document.getElementById("heading").innerHTML =
"JavaScript Feels Difficult Without Practice.";
};
// ======================
// QR CODE GENERATOR
// ======================
function generateQRCode() {
const text = document.getElementById("qrText").value;
const qrContainer = document.getElementById("qrcode");
qrContainer.innerHTML = "";
if (text.trim() !== "") {
new QRCode(qrContainer, {
text: text,
width: 180,
height: 180,
});
} else {
alert("Please Enter Text or URL");
}
}