forked from musescore-com/oembed-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
18 lines (18 loc) · 876 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>MuseScore.com OEmbed example</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.oembed.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function() {
//Any score url can be used, http://musescore.com/score/XXX http://musescore.com/node/XXX http://mus.cr/YYY etc...
$("#container").oembed("http://musescore.com/nicolas/golliwoggs-cakewalk" /*,{maxWidth: 1024}*/);
});
</script>
<div id="container"></div>
</body>
</html>