Commit 23ba34252a900c9be8faa2a2673896800c2a4700
1 parent
2d64cdb3
Exists in
master
and in
7 other branches
--no commit message
Showing
3 changed files
with
17 additions
and
17 deletions
Show diff stats
... | ... | @@ -0,0 +1,16 @@ |
1 | +<html> | |
2 | +<body> | |
3 | +Digite a palavra para busca:<br> | |
4 | +<input type=text value="" id="valorBuscaRapida" /><input type=button onclick="busca()" value="localizar" /> | |
5 | +<div style="width:310px;"><iframe style="width:310px;display:none;" id="resBuscaLugar" src=''></iframe></div> | |
6 | +<script> | |
7 | +i3GEO = {configura:{locaplic: "http://localhost/i3geo"}} | |
8 | +function busca(){ | |
9 | + var i = document.getElementById("resBuscaLugar") | |
10 | + i.src = "../ferramentas/buscarapida/gadget.php?locaplic=http://localhost/i3geo&palavra="+document.getElementById("valorBuscaRapida").value | |
11 | + i.style.display = "block" | |
12 | +} | |
13 | +</script> | |
14 | + | |
15 | +</body> | |
16 | +</html> | |
0 | 17 | \ No newline at end of file | ... | ... |
exemplos/aplic1.php
... | ... | @@ -1,16 +0,0 @@ |
1 | -<html> | |
2 | -<body> | |
3 | -Digite a palavra para busca:<br> | |
4 | -<input type=text value="" id="valorBuscaRapida" /><input type=button onclick="busca()" value="localizar" /> | |
5 | -<div style="width:310px;"><iframe style="width:310px;display:none;" id="resBuscaLugar" src=''></iframe></div> | |
6 | -<script> | |
7 | -i3GEO = {configura:{locaplic: "http://localhost/i3geo"}} | |
8 | -function busca(){ | |
9 | - var i = document.getElementById("resBuscaLugar") | |
10 | - i.src = "../ferramentas/buscarapida/gadget.php?locaplic=http://localhost/i3geo&palavra="+document.getElementById("valorBuscaRapida").value | |
11 | - i.style.display = "block" | |
12 | -} | |
13 | -</script> | |
14 | - | |
15 | -</body> | |
16 | -</html> | |
17 | 0 | \ No newline at end of file |
exemplos/index.html
... | ... | @@ -33,5 +33,5 @@ body,td |
33 | 33 | <p><a href="visual1.htm" target="_blank" >Junho</a></p> |
34 | 34 | <p><a href="visual2.htm" target="_blank" >Laranja</a></p> |
35 | 35 | <p>Aplicativos customizados</p> |
36 | -<p><a href="aplic1.php" target="_blank" >Busca rápida</a></p> | |
36 | +<p><a href="aplic1.htm" target="_blank" >Busca rápida</a></p> | |
37 | 37 | </body> | ... | ... |