some background information: i have a button in my html file that should activate the showPDF function but it tells me that its value is never read
javascript:
JavaScript
x
18
18
1
HM.PDFViewer =
2
{
3
init: function()
4
{
5
//---
6
},
7
showPDF: function()
8
{
9
function showPDF(x) {
10
x.style.display = "none";
11
var embed = document.createElement("EMBED");
12
embed.setAttribute("src", "/pdf/Doku.pdf");
13
embed.classList.add("size");
14
document.body.appendChild(embed);
15
}
16
},
17
};
18
the button in my html looks like this:
JavaScript
1
2
1
<button type="button" id="show" onclick="showPDF(this)" >PDF anzeigen</button>
2
help would be greatly appreciated as i can’t seem to find any answers in different questions
Advertisement
Answer
You just need to remove the duplication of the showPDF
function. you don’t need the inner one.
JavaScript
1
9
1
showPDF: function()
2
{
3
x.style.display = "none";
4
var embed = document.createElement("EMBED");
5
embed.setAttribute("src", "/pdf/Doku.pdf");
6
embed.classList.add("size");
7
document.body.appendChild(embed);
8
},
9