Files
WebStrayer/script.js
T
2019-03-28 12:09:57 -04:00

6 lines
326 B
JavaScript

function changePDF(chapter) {
var container = document.getElementById("pdfcontainer")
container.innerHTML = "<embed src='https://lax18.github.io/StrayerChapters/"+chapter+".pdf' type='application/pdf' style='height:calc(100vh - 70px)' width='100%'></embed>"
document.getElementById("chapter_name").innerHTML = chapter
}