Script Categories













User Details >>> Visitor Monitor.

If you are really interested in knowing who has come to your site, use this script. You will receive an e-mail from each visitor without them sending it.

Change the 'dummy' e-mail address to yours.
As a security precaution, newer browsers pop up a security alert box for this script - you can't prevent it from showing)

Add the below code to the <body> section of your page:

<script language="javascript" type="text/javascript">      
/* Visit http://www.yaldex.com/ for full source code
and get more free JavaScript, CSS and DHTML scripts! */
<!-- Begin
var startTime = new Date();
startTime = startTime.getTime();
var submissions = 0;

function checkForDuplicate() {
if (document.form1) {
document.form1.REFERRER.value = document.referrer;
document.form1.PLATFORM.value = navigator.appName
+ " " + navigator.appVersion;
submissions++;
if (submissions > 1)
return false;
else
return
true;
}
else {
return false;
   }
}
function doneLoading() {
var stopTime = new Date();
stopTime = stopTime.getTime();
document.form1.LOADING_TIME.value = ((stopTime - startTime) / 1000)
+
" seconds";
document.form1.PAGE.value = document.title;
document.form1.SUBMITTER.click();
}
window.onload = doneLoading;
// End -->
</script>
<FORM name="form1" METHOD=post action="mailto:antispammer@earthling.net?SUBJECT=Devious Visitor Monitor" enctype="text/plain" onSubmit="return checkForDuplicate()">
<input
type="hidden" name="PAGE" value="none">
<input
type="hidden" name="REFERRER" value="none">
<input
type="hidden" name="PLATFORM" value="none">
<input
type="hidden" name="LOADING_TIME" value="none">
<input
type="submit" name="SUBMITTER" value="Click me to let me know you were here">
</form>

JavaScript Editor Get Advanced
JavaScript and Ajax Editor,
Validator and Debugger!

1st JavaScript Editor.



Code was highlighted by 1st JavaScript Editor (The Best JavaScript Editor!).




©