Files
WebStrayer/script.js
T
2019-03-28 11:21:08 -04:00

6 lines
327 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_title").innerhtml = chapter
}