-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·30 lines (30 loc) · 1.12 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>comaCombo</title>
<link rel="stylesheet" type="text/css" href="css/jquery.comaCombo.css"/>
<link rel="stylesheet" type="text/css" href="css/main.css"/>
</head>
<body>
<form action="./" method="get">
<p>
<select name="pais">
<option value="co">Colombia</option>
<option value="es">España</option>
<option value="ve" selected="selected">Venezuela we fwef wefewfwef wef we fwef</option>
</select>
</p>
<p>
<select name="pais" class="foo">
<option value="co">Colombia</option>
<option value="es">España</option>
<option value="ve">Venezuela we fwef wefewfwef wef we fwef</option>
</select>
</p>
</form>
<script type="text/javascript" src="js/lib/jquery.js"></script>
<script type="text/javascript" src="js/lib/jquery.comaCombo.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>