Skip to content

Commit ab972ca

Browse files
"Added sample: javascript/search.html"
1 parent 8cc9e48 commit ab972ca

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

javascript/search.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<title>Search</title>
5+
</head>
6+
<body>
7+
<div id="buttons">
8+
<label> <input id="query" value='cats' type="text"/><button id="search-button" disabled onclick="search()">Search</button></label>
9+
</div>
10+
<div id="search-container">
11+
</div>
12+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
13+
<script src="auth.js"></script>
14+
<script src="search.js"></script>
15+
<script src="https://apis.google.com/js/client.js?onload=googleApiClientReady"></script>
16+
</body>
17+
</html>

0 commit comments

Comments
 (0)