W3.JS get country from ip address w3.js - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

How to get client country from ip address using w3.js ?


 275

W3.JS


1

<!DOCTYPE html>
<html>

<script src="https://www.w3schools.com/lib/w3.js "></script>

<body>

<div id="mydiv">

{{country}}

</div>


<script>

function foo(data) {

var myObject = { "country": "" + data.country.name + ""};
w3.displayObject("mydiv", myObject);

}

</script>
<script src="https://geoip.nekudo.com/api?callback=foo "></script>

</body>
</html>


By        
The power of the user (%)
13%

W3.JS


0

// the second way to obtain country with w3.js

<!DOCTYPE html>
<html>
<script src="https://www.w3schools.com/lib/w3.js "></script>
<body>

<div id="id01">
<span>{{country_name}}</span>
</div>

<script>
w3.getHttpObject("http://freegeoip.net/json/", myFunction);

function myFunction(myObject) {
w3.displayObject("id01", myObject);
}
</script>

</body>
</html>


By        
The power of the user (%)
62%



The most helpful W3.JS solutions

How to fill a dropdown using w3.js ?How to fill a dropdown using w3.js ?W3.JS

Click to see more ...

  1.1K     147

how to fill a dropdown from another file using w3.js ?how to fill a dropdown from another file using w3.js ?W3.JS

Click to see more ...

  874     144

how to fill a table from another file using w3.js ?how to fill a table from another file using w3.js ?W3.JS

Click to see more ...

  580     71

How to change background color using w3.js ?How to change background color using w3.js ?W3.JS

Click to see more ...

  449     57

get latitude and longitude w3.jsget latitude and longitude w3.jsW3.JS

Click to see more ...

  417     56

how to fill a list from another file using w3.js ?how to fill a list from another file using w3.js ?W3.JS

Click to see more ...

  351     53

how to set background color using w3js ?how to set background color using w3js ?W3.JS

Click to see more ...

  292     49

How to make a slide show using w3.js ?How to make a slide show using w3.js ?W3.JS

Click to see more ...

  281     46

How to display text  in html element using w3.js ?How to display text in html element using w3.js ?W3.JS

Click to see more ...

  236     42

how to round numbers to decimals from another file and display it using w3.js ?how to round numbers to decimals from another file and display it using w3.js ?W3.JS

Click to see more ...

  296     28

Welcome aboard!
We are happy you are here and
wish you good net-raft!