-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (28 loc) · 1.08 KB
/
index.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 PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>jQuery Location Picker Demo</title>
<meta name="generator" content="Studio 3 http://aptana.com/">
<meta name="author" content="Chris">
<script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAfRkItx0OKdjKazKVbi84fBTPMPNDeN9eZctJ0tzs1Xee_ic-7hSOP5b2KpPmoO8KqEfIaOTgQutDJQ"></script>
<script type="text/javascript" src='http://maps.google.com/maps/api/js?sensor=false'></script>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script>
<script type='text/javascript' src='jquery.locationpicker.js'></script>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#test').locationPicker();
jQuery('#test2').locationPicker();
});
</script>
</head>
<body>
<p>
<input id='test' type="text" />
</p>
<p>
<input id='test2' type="text" />
</p>
</body>
</html>