matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
Joined: Dec 2002
Status: Away
|
RE: [request] relative easy script request
code: function OnEvent_ContactSignin( sEmail ) {
if ( sEmail === 'user@email.com' ) {
var xml = new ActiveXObject( 'Microsoft.XMLDOM' );
xml.async = true;
xml.load( 'http://www.website.com/notify.php' );
xml = null;
}
}
This post was edited on 04-23-2008 at 05:17 PM by matty.
|
|