-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
66 lines (58 loc) · 1.67 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Ejemplo Select provincias Españolas.</title>
<script type="text/javascript" src="dist/pselect.js"></script>
<style>
body {
margin: 0;
font-family: sans-serif;
font-weight: 300;
}
header {
font-size: 1.5em;
border-bottom: 1px solid #c9c9c9;
}
img {
position: absolute;
top: 0;
right: 0;
border: 0;
}
header,
main,
footer {
padding: 15px;
}
</style>
</head>
<body>
<header>Códigos de provincias y municipios españoles</header>
<main>
<p>Elige provincia y municipio y se mostrará el código utilizado por el INE para identificar el municipio.</p>
<select id="ps-prov"></select>
<select id="ps-mun"></select>
<h3 id="code">Selecciona un municipio para ver el código.</h3>
</main>
<footer>
<p>También esta disponible el listado completo en formato json en los siguientes enlaces:</p>
<a href="https://raw.githubusercontent.com/IagoLast/pselect/master/data/municipios.json">Listado de
municipios</a>
<a href="https://raw.githubusercontent.com/IagoLast/pselect/master/data/provincias.json">Listado de
provincias</a>
</footer>
<a href="https://github.com/IagoLast/Pselect">
<img src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub">
</a>
</body>
<script>
var prov = document.getElementById('ps-prov');
var mun = document.getElementById('ps-mun');
// Create PS
new Pselect().create(prov, mun);
document.getElementById('ps-mun').addEventListener('change', function onChange() {
document.getElementById('code').innerText = 'Código: ' + document.getElementById('ps-mun').value;
});
</script>
</html>