-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmgram-paso4.html
78 lines (72 loc) · 2.21 KB
/
mgram-paso4.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script type="text/javascript">
$(document).on('click', '[data-role="navbar"] a', function () {
$.mobile.changePage($(this).attr("data-href"), {
transition: "none",
changeHash: false
});
return false;
});
</script>
</head>
<body>
<div id="map" data-role="page">
<div data-role="header">
<h1>Mejorando.la-gram</h1>
</div>
<div data-role="navbar">
<ul>
<li><a href="#" data-href="#map" class="ui-btn-active">Mapa</a></li>
<li><a href="#" data-href="#list">Listado</a></li>
<li><a href="#" data-href="#upload">Mis fotos</a></li>
</ul>
</div>
Mapa
</div>
<div id="list" data-role="page">
<div data-role="header">
<h1>Mejorando.la-gram</h1>
</div>
<div data-role="navbar">
<ul>
<li><a href="#" data-href="#map">Mapa</a></li>
<li><a href="#" data-href="#list" class="ui-btn-active">Listado</a></li>
<li><a href="#" data-href="#upload">Mis fotos</a></li>
</ul>
</div>
<div data-role="content">
<fieldset class="ui-grid-a">
<div class="ui-block-a">
<input type="text" class="tag" name="tag"/>
</div>
<div class="ui-block-b">
<a href="javascript:getPhotos();" data-role="button"
data-icon="check" data-inline="true" class="search-button">Buscar</a>
</div>
</fieldset>
<div class="result-count"></div>
<br/>
<ul data-role="listview" id="element_list"></ul>
</div>
</div>
<div id="upload" data-role="page">
<div data-role="header">
<h1>Mejorando.la-gram</h1>
</div>
<div data-role="navbar">
<ul>
<li><a href="#" data-href="#map">Mapa</a></li>
<li><a href="#" data-href="#list">Listado</a></li>
<li><a href="#" data-href="#upload" class="ui-btn-active">Mis fotos</a></li>
</ul>
</div>
Mis fotos
</div>
</body>
</html>