-
Notifications
You must be signed in to change notification settings - Fork 0
/
03-dir.html
32 lines (30 loc) · 896 Bytes
/
03-dir.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>console.dir</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>console.dir</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-2">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">console.dir(object)</h3>
</div>
<div class="panel-body">
Prints a JavaScript representation of the specified object. If the object being logged is an HTML element, then the properties of its DOM representation are displayed.
</div>
</div>
</div>
</div>
</div>
<script src="scripts/03-dir.js"></script>
</body>
</html>