forked from DHSI-Music-Encoding/MusEnc-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-meta.html
51 lines (44 loc) · 1.49 KB
/
index-meta.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html lang="en">
<head>
<title>My DHSI Music Encoding Project</title>
<meta charset="utf-8">
<meta name="description" content="My project">
<meta name="author" content="Me">
<link rel="stylesheet" href="css/style.css" media="all" />
<script src="js/verovio-toolkit.js"></script>
<script src="js/utils.js"></script>
</head>
<body>
<div id="content">
<!-- ADD YOUR HTML CONTENT HERE! -->
<h1>My project</h1>
<h2>Metadata</h2>
<p id="meta"></p>
</div>
<!-- **** DO NO EDIT BELOW THIS LINE **** -->
<!-- * **** **** **** **** **** **** **** -->
<div id="score">
<!-- THIS IS WHERE THE SCORE GOES AUTOMATICALLY -->
</div>
<!-- THIS CALLS THE SCRIPT THAT GETS THE MEI SCORE -->
<script src="js/index.js"></script>
<script>
var xhr = new XMLHttpRequest()
xhr.open('GET', 'data/example.mei') // <-- change this to the right file
xhr.send(null)
/* Deal with the response */
xhr.onreadystatechange = function () {
var DONE = 4
var OK = 200
if (xhr.readyState === DONE) {
if (xhr.status === OK) {
var parser = new DOMParser()
var meiDoc = parser.parseFromString(xhr.responseText,"text/xml")
document.querySelector("#meta").innerHTML += meiDoc.querySelector("[*|id='titlesdfndsjkfbsjh']").textContent
}
}
}
</script>
</body>
</html>