-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
42 lines (41 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Pagina dinamica</title>
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js" ></script>
</head>
<body>
<header>
<h1>Agregar Productos Dinámicamente</h1>
</header>
<div id="container">
<p>Ejemplo de formulario dinámico usando <a href="http://bit.ly/NZv9hI" target="_blank" title="para hacer la vida mas facil">Jquery</a> y <a href="http://twitter.github.com/bootstrap/" target="_blanl" title="para hacerlo bonito">bootstrap de twitter</a></p>
<form id="f" name="f">
<table id="tablaUsuarios" class="table table-bordered" >
<tr>
<th >Marca</th>
<th >Cantidad </th>
<th >Descripcion</th>
<th >valor</th>
<th >Eliminar</th>
</tr>
</table>
<div id="botones" class="centrar">
<input type="submit" id="guardar" class="btn btn-success" value="Guardar Todos" />
<input type="button" id="newp" class="btn btn-primary" value="Añadir producto" />
</div>
<div id="result" class="centrar">
Aqui se mostrara el resultado
</div>
</form>
</div>
<footer>
Desarrollado por <a href="http://twitter.com/MaoAiz" target="_blank">@MaoAiz</a><br />
<a href="http://mauricioaizaga.com" target="_blank">MauricioAizaga.com</a>
</footer>
</body>
</html>