Scare Your Visitors with this JavaScript Gravatar Plugin

See the Demo

Download the Source Code




Tournology Blog Comment Form

Here’s a use case. An unregistered visitor visits your blog, and decides that your content is so good that it merits a comment! Congratulations, you’ve fooled them! Now you can twply their account details for $1200 on Sitepoint! Just kidding. But generally, when you visit a blog’s commenting section (such as the Tournology Blog shown above), you’ll see a simple form to authenticate you’re not a spammer, generally including (among other things) an e-mail address field.




Tournology Blog Comment Form With Gravatar

Well, since they’re typing their e-mail address, wouldn’t it be cool if we could show them their gravatar right there, inline with the blog comment form? Well, that’s now possible with my new JavaScript Gravatar Plugin! It doesn’t have any server side language dependencies.




Gravatar Signup Page

Hell, gravatar.com could even use this to improve the user experience of registering your e-mail account. Right now it does a full page refresh and doesn’t even show you a preview!


See the Demo

Download the Source Code


Licensing

Licensed under the WTFPL, as highly recommended by Isaac Schleuter (see discussion).


JavaScript Dependencies:

  • Requires jQuery (Feel free to port and post a link!)
  • Requires md5.js


Example Usage:

Easiest form, onblur of email text input field:

$('#emailTextField').blur(function(event)
{
    $(this).after($.gravatar($(this).val()));
});

Showing all options, again onblur of email text input field.

$('#email').blur(function(event)
{
    $('body').append($.gravatar($(this).val(), {
        // integer size: between 1 and 512, default 80 (in pixels)
        size: 200,
        // maximum rating (in order of raunchiness, least to most): g (default), pg, r, x
        rating: 'pg',
        // url to define a default image (can also be one of: identicon, monsterid, wavatar)
        image: 'identicon'
    }));
});
VN:F [1.8.5_1061]
Rating: 4.0/5 (2 votes cast)
Scare Your Visitors with this JavaScript Gravatar Plugin4.052
This entry was posted in JavaScript, Projects and tagged , . Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.
  • Thanks for reading. If you found this article useful, and you've read through some of my previous articles, you might as well Subscribe to my content subscribe to my blog. You'll save me some bandwidth that way.

4 Comments

  1. Posted January 9, 2009 at 1:01 am | Permalink

    hey i want a downloadable version of alarmd

    so we can use our own computer songs

    and not be dependent on the internet (sometimes internet goes down)

    aye

  2. Zach Leatherman
    Posted January 9, 2009 at 1:02 am | Permalink

    Added this to the official jQuery plugin repository:
    http://plugins.jquery.com/project/gravatar

  3. Zach Leatherman
    Posted January 9, 2009 at 1:08 am | Permalink

    Well, it’s certainly nice to see that someone reads my posts.

    If I ever get bored, I might look at porting to AIR. Or if Gears ever adds file access. But, generally these things are managed on the Google Code page.

  4. Adam
    Posted January 9, 2009 at 1:11 pm | Permalink

    But you don’t have it set up on this blog! I wanted to see it in action besides the demo.

One Trackback

  1. [...] Comments Adam on Scare Your Visitors with this JavaScript Gravatar PluginZach Leatherman on Scare Your Visitors with this JavaScript Gravatar PluginZach Leatherman on Scare [...]

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

Additional comments powered by BackType