-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzmanfilold.html
55 lines (41 loc) · 1.33 KB
/
zmanfilold.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
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Yahalom Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
</head>
<body>
<div id="Zmanim" style="font-size: 50px; color:black; font-weight: bold; text-align: left;">
</div>
<script>
$(document).ready(function() {
//https://www.chabad.org/tools/rss/zmanim.xml?locationid=347&locationtype=1
console.log("Updating Zmanim");
/* $.ajax({
url: `https://yahalomsguy.github.io/SynSign/zmanim.html`;
data: data,
success: success,
dataType: "xml",
})
*/
/* $.get("", function(data) {
console.log(data.);
});
*/
$.ajax({
type: "GET",
url: "https://yahalomsguy.github.io/SynSign/zmanim.html",
dataType: "jsonp",
success: function(data) {
console.log(data);
jsonData = JSON.parse(data);
console.log(jsonData[0]);
}
})
});
</script>
</body>
</html>