4 lines
243 B
JavaScript
4 lines
243 B
JavaScript
function changePDF(chapter) {
|
|
var container = document.getElementById("pdfcontainer")
|
|
container.innerHTML = "<embed src='https://lax18.github.io/StrayerChapters/"+chapter+".pdf' type='application/pdf' height='100%' width='100%'></embed>"
|
|
} |