/* ------------------ 【】 BEGIN ------------------- */ (function(){ $('.hidden_page').val(window.location.href); function changeImg(){ var imgSrc = $("#imgObj"); var src = imgSrc.attr("src"); imgSrc.attr("src",src+"?"+Math.random()); } var YOUR_KEY = "4f21d3e89231c93599ff1f8b7a82a008d03beed6ce46978d8e2816f13ad7e5c1"; var theURL = "//api.ipinfodb.com/v3/ip-city/?key=" + YOUR_KEY + "&format=json&callback=?"; $.ajax({ type: "POST", url: theURL, contentType: "application/json; charset=utf-8", dataType: "json", method: 'GET', success: function (data) { $("#country").val(data.countryCode); $("#ipAddress").val(data.ipAddress); $("#countryName").val(data.countryName); $("#countryCode").val(data.countryCode); $("#regionName").val(data.regionName); $("#cityName").val(data.cityName); $("#zipCode").val(data.zipCode); $("#latitude").val(data.latitude); $("#longitude").val(data.longitude); $("#timeZone").val(data.timeZone); } }); })(); /* ------------------ 【】 END ------------------- */