Get IP address using javascript And SSI

This Tutorial Has Been Viewed 4,836 Times.

Its very easy to get  IP address using javascript and SSI, Javscript is a client side script and it doesnt have the capablity of finding out the ip address by itself so we are using SSI along with javascript.

Use SHTML extention instead of html or htm, we are using SSI for getting the IP

Here is the SSI[Server Side Includes] script used in this tutorial
<!–#echo var=”REMOTE_ADDR”–>
<SCRIPT LANGUAGE="JavaScript"><!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! -->

<!-- Begin

// [url]http://www.mistonline.in[/url]

// Depending on your server set-up,

// you may need to use the ".shtml"

// extension [instead of the "html"

// or "htm"] as the script uses Server

// Side Includes. To display in the

// title bar, exclude the

//"<title></title>" code from the page.

// 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>");

// End -->
</script>

VN:F [1.9.13_1145]
Rating: 10.0/10 (2 votes cast)
VN:F [1.9.13_1145]
Rating: +1 (from 1 vote)

Get IP address using javascript And SSI, 10.0 out of 10 based on 2 ratings

Incoming search terms:





You will also be interested in ,

Tags:

Leave a Reply

Spam protection by WP Captcha-Free

Proudly designed by Mistonline.in.
Affordable Seo PackagesSeo BlogEdu Backlinks
More in JavaScripts (49 of 80 articles)


Here is a simple script in javascript which shows how you can add a link in your website to make ...