-
Notifications
You must be signed in to change notification settings - Fork 1
/
example1.html
38 lines (37 loc) · 1.67 KB
/
example1.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
<!DOCTYPE html>
<!--/**
*
* @link https://github.com/mzm-dev
* @created September 2014
* @fb https://www.facebook.com/zakimedia
* @email mohdzaki04@gmail.com
*/-->
<html>
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="Getting started with JSON using JavaScript and jQuery" name="description">
<meta content="Mohamad Zaki" name="author">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="http://getbootstrap.com/examples/jumbotron-narrow/jumbotron-narrow.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="header">
<ul class="nav nav-pills pull-right">
<li><a href="/JSON-Example/"><span class="glyphicon glyphicon-chevron-left"></span> Back</a></li>
<li class="active"><a href="https://github.com/pesima/JSON-Example">Get the code on Github now HighCharts</a></li>
</ul>
<h3 class="text-muted">A JSON Tutorial | <span>Breaking JSON down</span></h3>
</div>
</div>
<script>
var data = {"namaPenuh": "Mohamad Safwan Haziq"};
alert(data.namaPenuh);
</script>
</body>
</html>