-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
25 lines (20 loc) · 1.16 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
<!DOCTYPE HTML>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Ejemplo de Ajax y Json ustilizando jQuery y PHP</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="ejemplo.js"></script>
</head>
<body>
<input class="ObtenerInfo" name="btn" type="button" value="Obtener Información"><br /><br />
<input name="" type="text" value="" id="nombre_completo" placeholder="Nombre Completo" readonly><br />
<input name="" type="text" value="" id="mail" placeholder="Mail" readonly><br />
<input name="" type="text" value="" id="twitter" placeholder="Twitter" readonly>
<br /><br />
<input class="ObtenerInfoProducto" name="btn" type="button" value="Obtener Información de Producto"><br /><br />
<input name="" type="text" value="" id="nombreProducto" placeholder="Nombre Completo" readonly><br />
<input name="" type="text" value="" id="descripcion" placeholder="Mail" readonly><br />
<input name="" type="text" value="" id="stock" placeholder="Twitter" readonly>
</body>
</html>