get ip address js
function getIPFromAmazon() {
fetch("https://checkip.amazonaws.com/").then(res => res.text())
.then(data => console.log(data))
}
getIPFromAmazon()
get ip address js
function getIPFromAmazon() {
fetch("https://checkip.amazonaws.com/").then(res => res.text())
.then(data => console.log(data))
}
getIPFromAmazon()
get ip address js
function getIPFromAmazon() {
fetch("https://checkip.amazonaws.com/").then(res => res.text()).then(data => console.log(data))
}
getIPFromAmazon();
Get IP Address with js
<!DOCTYPE html>
<html>
<head>
<title>Getting Clients IP</title>
<style>
p, h1 {
color: green;
}
</style>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js">
</script>
<script>
/* Add "https://api.ipify.org?format=json" statement
this will communicate with the ipify servers in
order to retrieve the IP address $.getJSON will
load JSON-encoded data from the server using a
GET HTTP request */
$.getJSON("https://api.ipify.org?format=json", function(data) {
// Setting text of element P with id gfg
$("#gfg").html(data.ip);
})
</script>
</head>
<body>
<center>
<h1>GeeksforGeeks</h1>
<h3>Public IP Address of user is:</h3>
<p id="gfg"></p>
</center>
</body>
</html>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us