some javascript
Posted: Mon Jun 02, 2003 8:37 am
Alright, I have this person who has been trying to use my site as a spam relay to send spam mail via a url.
Now, I have been logging and tracking him and collecting info on him. And have found out that he uses IE6, so I had though of a plan to get a message accross to him.
First off I am going to make it do this:
But, to make this more of an "experience" for him. I want it to make a new browser open to the same url. How would I do this?
I think I might make the alert a function that can be run and looped.
Sort of like this:
Anyway, I need to know how to make a new browser automatically open up to the url of my choosing(sort of like a popup ad).
I am also thinking about putting some sort of picture on the page to discust and offend the user.
Anyway some coding and ideas on how to make an "impression" on this troublesome user would be appreciated.
Now, I have been logging and tracking him and collecting info on him. And have found out that he uses IE6, so I had though of a plan to get a message accross to him.
First off I am going to make it do this:
Code: Select all
alert('Stop trying to access this program you silly *****.');
I think I might make the alert a function that can be run and looped.
Sort of like this:
Code: Select all
function DoAlert() {
alert('alert text');
DoAlert();
}
I am also thinking about putting some sort of picture on the page to discust and offend the user.
Anyway some coding and ideas on how to make an "impression" on this troublesome user would be appreciated.