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.

user inteface


jQuery uiSelect

jQuery.uiSelect 1.0

Description

uiSelect allows you to easily style all elements of form select menus.

uiSelect Plugin takes 3 parameters

First Param (object) - for the left and top offsets - must be a numerical value
Second Param (String) - ID of the <div> containing your menu items
Third Param (String) - ID of the <input> which will hold the value selected

SAMPLE CODE
$('#selectMenu').uiSelect({leftOffset: -10, topOffset: 0},'uiList','uiInput');

Jquery TextBox Help Plugin

This plugin will add new behaviour your textboxes.
With this plugin, you can set help text inside to texbox. When user click to text box, help text will disappear. If, user leave text box without type anything, your help text come back and it will show again.

In addition, plugin supporting for focus css styling. It will add automaticly "focus" class to your text box, when user click inside it. When user click somewhere else, "focus" class will be removed.

Basic Usage:

$().ready(function(){
  $('#search').textboxhelp({help:'Search!'});
});

Basic Usage With Custom Class:

$().ready(function(){
  $('#search').textboxhelp({help:'Search!', focuscls:'custom_cls'});
});

That's all.