JS – Get IP Address
How to get IP Adress using Javascript, only one line of code!

<html>
<head>
</head>

<body>

<SCRIPT LANGUAGE="JavaScript">
var ip = '<!--#echo var="REMOTE_ADDR"-->';
document.write("Your IP address is" + ip);
</script>

</body>

</html>

My official WebSite >