Show sourcecode
The following files exists in this folder. Click to view.
public_html/gamla-kurser/webbutv1/ovningar/js/
js_ovning11.js
19 lines ASCII Windows (CRLF)
function show() {
document.getElementById("text1").style.display = "block";
}
function hide() {
document.getElementById("text1").style.display = "none";
}
document.querySelector("#show1").addEventListener("click", show);
document.querySelector("#hide1").addEventListener("click", hide);
function copyText() {
var text = document.getElementById("textinput").value;
var dialogueBox = document.getElementById("copied");
// Copy text from text input to dialogue box div
dialogueBox.innerHTML = text;
textinput.value = "";
}