How To Stop Spambots Harvesting Your Email Address
Below is a MRR and PLR article in category Internet Business -> subcategory Spam.

Protect Your Email from Spambots
Summary:
Nobody likes spam, and reducing it is both easy and beneficial. With a basic understanding of HTML and some simple JavaScript, you can protect your email from spambots.
Understanding the Threat
The internet, unfortunately, has its share of unscrupulous individuals. Among the most bothersome are those who deploy automated scripts to harvest email addresses from web pages, compiling them into large databases for spam.
Simple JavaScript Solution
To safeguard your email, you don't need advanced tech skills?"just some basic HTML knowledge and the ability to cut and paste. Here's how you can use JavaScript to protect your email:
Step-by-Step Guide
1. Open a Text Editor:
- Open Notepad or any text editor.
2. Copy the Script:
```javascript
// Basic email protection script
function blocker(name) {
var domain = "yourdomainname.com";
document.write('' + name + '@' + domain + '');
}
// Adding a subject field
function blockersubject(name, subject) {
var domain = "yourdomainname.com";
document.write('' + name + '@' + domain + '');
}
// Custom link text
function blocker2(name, text) {
var domain = "yourdomainname.com";
document.write('' + text + '');
}
// Subject and custom link text
function blockersubject2(name, subject, text) {
var domain = "yourdomainname.com";
document.write('' + text + '');
}
```
3. Save the File:
- Name the file `blocker.js` and store it where you keep your site's documents. You can reuse this script on different web pages by just modifying its variables.
4. Organize Your Scripts:
- Create a sub-directory named `javascript` for storing your scripts.
5. Link the Script in Your HTML:
- In the `` section before the closing `` tag, add:
```html
```
- Ensure the path to the script is correct. If you're using a tool like Dreamweaver, you can update your site's template easily.
6. Handle Browsers Without JavaScript:
- Add a message for users with JavaScript disabled:
```html
```
- Avoid using the `@` symbol or full stops to keep spambots from detecting your email.
7. Test and Adjust:
- Ensure everything is working by testing your page and adjusting paths as necessary.
By following these simple steps, you can effectively shield your email address from spambots and reduce unwanted spam.
You can find the original non-AI version of this article here: How To Stop Spambots Harvesting Your Email Address.
You can browse and read all the articles for free. If you want to use them and get PLR and MRR rights, you need to buy the pack. Learn more about this pack of over 100 000 MRR and PLR articles.