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.

support


HTML5 Placeholder support Cross-Browser (replace input field value)

This plugin is the most advanced of it's kind as it not only has full support for the placeholder value but it also allows you to set a custom style when the text inside the text field is the placeholder so it can truly look and act like the placeholder in HTML5.

Contactable+IzzyHelp - jQuery Plugin

jQuery plugin designed to make contact/feedback forms simpler and more accessible, connected with IzzyHelp handy FAQ.

This plugin will enable you to create a contact form and handy FAQ menu on any page of a site with minimal effort. If you have ever seen the feedback forms provided by kamypyle you will be familiar with the technique they use, however contactable makes this process even simpler by overlaying the content onto your page quickly and easily with a slide effect and inline validation.

New Line Character Feature Detection Extension

Ever need to know what the new line character is on the client side? Have you, like I have, tried to find the perfect way to add a new line in a PRE tag, so that it did not add a leading or trailing space? Have you tried to figure out what new line character is being used in a textarea for those new lines? Finally you can easily figure it out. Thanks to the new $.support object, it can be tested once an never worried about again. This extension, when included, will automatically extend the $.support object with the appropriate tests results for the client browser. Then later in your application you can test against those results to find the proper new line character for the OS browser combo for the client.

Usage:

$(function() {
var EOL = false;
if ($.support.rnNewLine)
EOL = "\r\n";
else if ($.support.rNewLine)
EOL = "\r";
else if ($.support.nNewLine)
EOL = "\n";
else

jHistory

Allows for browser forward/back button support through the use of hidden IFRAME. The user will not be hindered by any location.href changes and odd links that appear in the browser's location bar. This does not allow bookmarking.

The main advantage of this over the current History plugin, the jQuery UI History plugin or any javascript-based browser history functionality that harnesses the Location Hash fragment method is specifically for e-commerce driven AJAX functionality. This hides individual history fragments from the user's view and prevents specific fragments from being bookmarked.