|
<script>
// www.kdcgrohl.com
//this document must end in .shtml
// this part gets the ip
var ip = '<!--#echo var="REMOTE_ADDR"-->';
// this part is for an alert box
alert("Your ip address is "+ip);
// this part is for the status bar
window.defaultStatus = "Your ip address is "+ip;
// this part is for the title bar
document.write("<title>Your ip address is "+ip+"</title>");
</script>
|
|