We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30ce461 commit 410cf49Copy full SHA for 410cf49
Example.html
@@ -16,5 +16,19 @@ <h1>Example RandomProxy.js</h1>
16
<div id="data_result">
17
</div>
18
19
+ <script type="text/javascript">
20
+ var loading=document.querySelector("#loading");
21
+ var data_result=document.querySelector("#data_result");
22
+ function get()
23
+ {
24
+ loading.innerHTML="<b>Loading....</b>";
25
+ proxy.get(function(data)
26
27
+ loading.innerHTML="";
28
+ data_result.innerHTML="IP : " + data.ip + "<br>Port : " + data.port + "<br>Country : " + data.country + "<br>";
29
+ data_result.innerHTML+="<hr><code>" + JSON.stringify(data) + "</code>";
30
+ });
31
+ }
32
+ </script>
33
</body>
34
</html>
0 commit comments