Arabic | German | Portuguese | Chinese | Italian | Russian | Japanese | Spanish | French | Korean




Dont Require Email

Pre-fill a fake email address on WordPress / MT / TypePad comment forms

Install this script

This is a Greasemonkey is a plugin for the Firefox web browser

// Dont Require Email
// version 0.1
// 28 May 2005
// Copyright (c) 2005, Adam Vandenberg
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
//
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Dont Require Email", and click Uninstall.
//
// ==UserScript==
// @name		Dont Require Email
// @namespace	http://adamv.com/greases/
// @description 	Pre-fill a fake email address on WordPress / MT / TypePad comment forms
// @include	*
// ==/UserScript==

(function(){

var theForm = document.forms["comments_form"] || document.forms["commentform"];
if (theForm){
	var theEmail = theForm.elements["email"];
	if (theEmail){
		if (theEmail.value=="") theEmail.value = "spam@spam.spam";
	}
}
})();

You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Subscribe to our FREE Rss Feed

Leave a Reply


Honeytech Blog have 1,049 posts and 2,903 comments .Moreover it have total registered 760 members and 2256 guests.This work is licensed under a Creative Commons Attribution-Non Commercial-ShareAlike 2.5 License