Dynamic Date & Geo-Location

0 replies
I was just adding some more content to my War-Room thread (best place for IM info. ) and realized that these scripts can be useful to almost anyone in the internet marketing space.

I mean showing the current date on your sales letter has been proven effective and a lot of top guys do that; also geo-location can help you get higher CTR because people feel that the offer is directly related to them.

Since I am not a coder I cannot code this but I got my friend to make these for me; thought I would share


Dynamic Date Script :


<SCRIPT language="JavaScript" type="text/javascript">
<!--

var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thu rsday","Friday","Saturday");

var monthNames = new Array("January","February","March","April","May"," June","July",
"August","September","October","November","Decembe r");

var dt = new Date();
var y = dt.getYear();

// Y2K compliant
if (y < 1000) y +=1900;

document.write(dayNames[dt.getDay()] + ", " + monthNames[dt.getMonth()] + " " + dt.getDate() + ", " + y);
// -->
</SCRIPT>
Just copy-paste this if you have an html page. And if you use a WP Blog then just find raw-html wp plugin and use that to do this with the code above.

I'm sure there is a WP Plugin out there for this but if I do even that, next time you'll ask me to do your dishes too......lol



Dynamic GEO Location Script

<script src="http://www.google.com/jsapi" type="text/javascript"></script><script type="text/javascript"><!-- if (typeof(google.loader.ClientLocation.address.city) != null) { document.write(google.loader.ClientLocation.addres s.city +", " +google.loader.ClientLocation.address.region); } else { document.write("San Diego, CA") } // --></script>
#date #dynamic #geolocation #inside #script

Trending Topics