Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

spam


Quicktime Event

Everybody knows the quicktime events in current games (i.e. the God of War series), where you have to smash buttons at display.

If activated, a overlayed div pops up displaying the key to press and a bar of time remaining.

A Better Form - Spam-less Robot-less Forms

A Better Form

A Better Form is a jQuery plugin I designed to help eliminate spam comments, spam emails and other automated form submissions.

This plugin ELIMINATES THE NEED FOR CAPTCHA GENERATORS and other similar technological blunders. You'll rest assured knowing spam-bots aren't submitting your forms!

A Better Form is easy to use. By following a few simple rules I've outlined on my website your website forms will be "Spam-less and Robot-less". Goodbye CAPTCHA - we wont be missing you!

Stop annoying your website visitors with CAPTCHA security codes, trick questions, and mathematics with A Better Form. A Better Form uses plain-old HTML and javascript without cookies, sessions, tokens, image generators, or eye-candy.

jQuery Simple Captcha

SimpleCaptcha allows you to drop in an easy-to-use and understand captcha implementation for helping to curb spambots on your system. The plug-in makes things very easy for you with a limited amount of setup required and standard xhtml and css classes in place to make changing the appearance super easy.

SPAM Protection Using PHP and jQuery

Solution for SPAM protection without using a CAPTCHA or other complicated SPAM protection techniques.

Here's how it works:

* Give your required form field a specific class
* After a visitor enters information in the text field, a call is made to the PHP script, using jQuery
* The PHP script sets a session, confirming that the visitor is actually a real person since they must have clicked on one of the form fields.
* Since the session is set, the visitor is allowed to send the form.

jQuery Code:

<script>

$(function() { 

//
$(".required").blur(function() { 

$.get("form.php", { //name of the PHP file containing the session code
confirm: '<?php echo $_SESSION['confirm_real_sig']; ?>'
},

function(data){
//alert("Data Loaded: " + data);
});

});
});
//

</script>

PHP code to process the form:


<?php
session_start();

Mailme - Email Defuscator

Based on this article:

http://www.html-advisor.com/javascript/hide-email-with-javascript-jquery/

Example markup:

<span class="mailme" title="Send me a letter!">me at mydomain dot com</span>

Example code:

// Replaces all the matching elements with a <a href="mailto:..> tag.
$('span.mailme').mailme();