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