Step Carousel Viewer
Step Carousel Viewer displays images or even rich HTML by side scrolling them left or right. Users can step to any specific content on demand, or browse the gallery sequentially by stepping through x number of contents each time. A smooth sliding animation is used to transition between steps. The contents for the Step Carousel Viewer can be defined either directly inline on the page, or via Ajax and extracted from an external file instead. In both cases, the contents are simply DIVs with a shared CSS class name that wrap around each individual content.
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2008-Mar-21 |
(v)sprintf
Last changed: 10 weeks 1 day ago
Implements both a somewhat stripped down "classic" version of the C sprintf (no support for width, sign, padding and flags), and a python-like one employing named parameters.
Why another implementation, when we already have one? well:
- size: 2262 bytes;
- features: I wanted named arguments, like in python;
- license: the existing implementation uses a BSD license, I wanted GPL;
- and fun, of course.
Usage
//sprintf
//positional arguments
var classic = $.sprintf('%s %d%% %.3f', 'string', 40, 3.141593);
// classic = 'string 40% 3.142'
//named arguments
var named = $.sprintf('%(name)s: %(value)d', {name: 'age', value: 40});
// named = 'age: 40'
//vsprintf
var classic = $.vsprintf('%s %d%% %.3f', ['string', 40, 3.141593]);
// classic = 'string 40% 3.142'
//named arguments
| Version | Date | Links |
|---|---|---|
| 1.0.2 | 2008-Mar-03 |
123Tree
Last changed: 1 day 5 hours ago
This is Tree and you can have best fecilities and it is very simple tree
| Version | Date | Links |
|---|---|---|
| 2008-May-13 |
:path
Last changed: 1 week 3 days ago
:path is a pseudo-class selector written in jquery. It automatically filters out href attributes that matches the window location and it's ancestors. Use it to style or modify active states in navigations without server-side interaction.
Usage (example):
$('ul a:path').parent().addClass('active');
Comes bundled with the similar selector :current that filters out hrefs that points to the very same page that the window.location returns.
| Version | Date | Links |
|---|---|---|
| 1.0 | 2008-May-04 |
Absolutize
Last changed: 35 weeks 5 days ago
An absolutizer for block level DOM elements.
It don't modify the DOM document
Require dimensions.
| Version | Date | Links |
|---|---|---|
| 0.0.1-rc-1 | 2007-Sep-06 |
Accessible
Last changed: 19 weeks 5 days ago
What is this ?
- This plugin aims to be a collection of snippets that improve accessibility for websites.
- It also includes a set of "recommendations" coded as tests to improve accessibilty (even beyond javascript).
- These recommendations can be tested against a page, and get a summary of the results.
How to use it ?
- First add a call to jquery.js (duh!).
- Add jquery.accessible.js. This contains the engine for rules/fixes and a set of predefined ones.
- Right after this, you are ready to run the fixes by calling jQuery.accessible(). You can pass in a hash to specify, with the id and true or false, which ones to run.
IMPORTANT: don't call this function inside document.ready, call it right away instead.
If you want to run the tests in your page:
- Add jquery.accessible.validator.js after jquery.accessible.js.
| Version | Date | Links |
|---|---|---|
| 0.1.0-dev | 2007-Dec-27 |
Accordion
Last changed: 9 weeks 3 days ago
This plugin creates an accordion menu. It works with nested lists, definition lists, or just nested divs. Options are available to specify the structure, if necessary, the active element (to display at first) and to customize animations. The navigation-option automatically activates a part of the accordion based on the current location (URL) of the page.
| Version | Date | Links |
|---|---|---|
| 1.6.0 | 2008-Mar-09 |
Accordion Content/ Menu script
A jQuery powered accordion content script. Group contents together and reveal them on demand when the user clicks on headers. Specify whether only one content within the group should be open at any given time, style the headers depending on their content state, and enable persistence so the state of the contents is preserved within a browser session.
A dedicated page showing how to easily create an Accordion Menu using the script (see demo link) is also available.
| Version | Date | Links |
|---|---|---|
| 1.3 | 2008-Apr-04 |
Ajax Manager (block, abort, queue, synchronize)
Last changed: 3 weeks 2 days ago
Helps you to manage Ajax requests and responses (i.e. abort requests, block requests, order responses).
| Version | Date | Links |
|---|---|---|
| 1.0.1-beta | 2008-Apr-15 | |
| 1.1.0 | 2008-Apr-20 |
Ajax Broken Link Checker
Last changed: 30 weeks 3 days ago
This module checks your links on the current page by requesting them and reading the server response. If the server returns 200 OK the link gets 'active' class, if other header - the link marked as inactive.
Uses php script as the backend.
| Version | Date | Links |
|---|---|---|
| 0.1-dev | 2007-Oct-14 |
Ajax Queue
Last changed: 38 weeks 1 day ago
Ajax Queue is a plugin that helps to manage Ajax race conditions. When multiple Ajax requests are made in rapid succession, the results can be returned out of order. This can cause weird behavior in your application. Ajax Queue is a plugin (actually, 2 plugins) that provide a way to manage these requests. This plugin was written by John Resig and is maintained by Mike Hostetler.
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2007-Aug-21 |
ajaxContent
Last changed: 15 weeks 4 days ago
The plugin refers to an A tag and use the
Href attributes to make the call filling up a #ajaxContent div on the
page with the server resposnse.
The plugin manage:
1) the display of a loading message ( an img if you want )
2) the error message ( cutomizable) display if needed
3) the call of course
4) the loading data in the div
5) the event is click but is customizable as you prefer as of course
the target element.
Is nothing special nut I love to set up my standard ajax like thi:
$('.ajax').ajaxContent();
and let the plugin do the work for me.
| Version | Date | Links |
|---|---|---|
| 2.1 | 2008-Jan-26 |
AjaxTop - AJAX with Tag Oriented Programming
AjaxTop is a package that adds XML to JavaScript binding. It provides two main extension methods, the loadTag() method and the registerTag() method. The loadTag() method sends an AJAX request and applies the result to the selected object in similar fashion to the load() method. The response is expected to be XML which is automatically parsed and mapped to objects as determined by registerTag() calls. The mapped objects generate the output that is applied to the selected object. See AjaxTop for more details.
| Version | Date | Links |
|---|---|---|
| 3.0.1 | 2007-Nov-11 |
akeditable in place editor
Last changed: 6 weeks 3 days ago
This plugin is based on jEditable, and provides a way to create editable area on clicking links etc. It provides save and cancel button instead of ENTER key to save the content.
you can check for details at http://amiworks.co.in/talk/akeditable-jquery-inplace-editor/
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2008-Mar-29 |
akModal: simplest alternative to thickbox
Last changed: 4 weeks 12 hours ago
akModal is the simplest way to achieve the modal dialog box or pop up box for simple purposes like showing signin box etc.
You will find it very useful when you need a lightbox kind of plugin that you can control, and customize for you requirements.
More information is at akModal article
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2008-Apr-15 |
Animated Hover
Last changed: 8 weeks 4 days ago
Animated Hover provides animated transitions between hovered items for any jQuery project. Requires jQuery 1.2+ and Dimensions
| Version | Date | Links |
|---|---|---|
| 1.0 | 2008-Mar-14 |
Another Color Picker
Last changed: 43 weeks 1 day ago
This rudimentary color picker plugin was designed for use in small UIs. It does not use image files and does nothing fancy. It creates a number of small elements (normally SPANs) which, when clicked, activate a callback function, which is typically used to pass on the selected color to some other UI element(s) (e.g. to change a background, text, or border color). The list of colors it uses can of course be customized and the layout of the color list itself is somewhat configurable.
| Version | Date | Links |
|---|---|---|
| 2007.07.12 | 2007-Jul-17 |
appendDom
Last changed: 39 weeks 5 days ago
This plugin allows for easier and more intuitive creation of dom elements.
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2007-Aug-09 |
appendText
Last changed: 46 weeks 1 day ago
Description
This (very) small plugins is the incestuous child of "append" and "text": it appends a new Text Node.
This is especially important when you want to append user-supplied input, because a Text Node is never interpreted as HTML.
Example
var $myLabel = $("<label/>")
.append("<input type='checkbox'/>")
.appendText("use HTML <a href=''>");Will add to the DOM the equivalent of the following HTML:
<label><input type='checkbox'/>use HTML <a href=''></label>| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2007-Jun-25 |
Aspect Ratio
Last changed: 5 days 21 hours ago
(This plugin is still in Beta)
What is this?
This plugin attempts to easily bring aspect ratio to an html object such as an Image.
Requirements
- jQuery 1.2.3+
- Dimensions 1.2+
Browser Support
- Internet Explorer 6+
- FireFox 2+
- Should work in most other browsers, but still needs some testing.
How do I use it?
- Add the jquery library to your page.
- Add the Dimensions plugin to the page - http://plugins.jquery.com/project/dimensions
- Finally, Add the Aspect Ratio plugin to the page.
To manipulate all images on a page w/ the AspectRatio plugin, simply type...
$('img').AspectRatio();
...that's it. Just make sure you wrap the "ready" function around this before using it.
Any feedback is greatly appreciated and helps to make this plugin better!
Enjoy!
| Version | Date | Links |
|---|---|---|
| 1.0.0-beta1 | 2008-May-08 |
Async Uploader
Last changed: 43 weeks 6 days ago
AsyncUploader is a way for webdevelopers who use jQuery, to implement aynchronous uploading to their sites. This is done in three easy steps.
- Including the jquery.asyncUploader.js in your html file.
- Create a form field with file upload capeabilities.
- Setup the plugin.
Create a simple form, with a filebrowser field and a submit button (in this example the id of the submit button is uploadFileButton).
In the header of your HTML file you setup the asyncUploader with something like this:
$(document).ready(function(){
$("#myForm").handleUpload({
submitButtonId: "uploadFileButton",
fileHandlerUrl: "fileThatShouldProcess.php (.asp/.jsp)",
printTxtIn: "uploadText"
});
});
I will no longer be working on this project. Do what you want with it =)
| Version | Date | Links |
|---|---|---|
| 0.1 | 2007-Jul-11 |
Auto Growing Textareas
Last changed: 7 weeks 6 days ago
This plugin makes it easy to have auto-growing textareas. Meaning, if you have a textarea, as the user types it will expand vertically to accommodate the size of the entry. This was inspired by Facebook's auto-expanding text areas.
To make a textarea autogrow, simply do this
$('textarea').autogrow();
$('textarea.classname').autogrow();
etc...
| Version | Date | Links |
|---|---|---|
| 1.2.1 | 2008-Feb-13 | |
| 1.2.2 | 2008-Mar-19 |
Auto line-height
Last changed: 46 weeks 1 day ago
Adjusts the line-height of selected elements in proportion to their width, relative to the font size.
Requires
- jQuery version 1.1.2
- jQEm version 0.2
Use
$(function(){
$('#flexme').autolineheight();
});Where ‘flexme’ is the id of an element in your page whose contained text is to be fine tuned.
Settings
You may adjust the default values to your taste and circumstance when you assign the behaviour to an element, for example:
$('#flexme').autolineheight({minWidth:16,minLineHeight:1.2,ratio:.03});More
Further details can be found on my blog post: Auto line-height: a jQuery plugin for flexible layouts
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2007-Jun-26 |
Autocomplete
Last changed: 2 weeks 2 days ago
Autocomplete an input field to enable users quickly finding and selecting some value, leveraging searching and filtering.
By giving an autocompleted field focus or entering something into it, the plugin starts searching for matching entries and displays a list of values to choose from. By entering more characters, the user can filter down the list to better matches.
This can be used to enter previous selected values, eg. for tags, to complete an address, eg. enter a city name and get the zip code, or maybe enter email addresses from an addressbook.
Both local and remote data can be used: Local is good for small datasets (like an addressbook with 50 entries), remote is necessary for big datasets, like a database with hundreds or millions of entries to select from.
Support
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2008-Apr-27 |
Autoimage
Last changed: 26 weeks 6 days ago
Provides scripted image animations; cross fade between images (using alpha transparency); smooth image based buttons.
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2007-Nov-07 |
Automatic Date Completion
Last changed: 23 weeks 5 days ago
For use in an <input type="text" /> field. It lets the user only type in 10 and the input will be transformed into 2007-12-10.
Only typing a number will get the month and year. It presumes it's in the future, so if you type 10 on the eleventh of November, it will return December (2007-12-10 that is).
Works great with the jQuery UI Datepicker
One way of use
$("input").blur(function () {
var value = $(this).val();
$(this).dateCompletion(value);
}
});| Version | Date | Links |
|---|---|---|
| 0.9.1 | 2007-Nov-29 |
Background-Position Animations
Last changed: 8 weeks 5 days ago
Adds the ability to do background-position animations to jQuery 1.2, and newer.
$('#background').animate({backgroundPosition: '(150px 250px)'});
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2007-Oct-07 | |
| 1.0.2 | 2008-Mar-13 |
Basic XPath
Last changed: 35 weeks 2 days ago
This plugin adds in basic XPath selector functionality, compatible with jQuery 1.1.
| Version | Date | Links |
|---|---|---|
| 1.0 | 2007-Sep-09 |
Batch
Last changed: 4 days 4 hours ago
Batch is a plugin that allows you to batch the results of any jQuery method, plugin into an array. By default the batch plugin aliases the getter methods in jQuery by adding an 's' to the end (attrs, offsets, vals ...). You can also just call $(...).batch('methodName', arg1, arg*n).
| Version | Date | Links |
|---|---|---|
| 1.0.1 | 2008-May-09 |
beePolaroid
An Experiment using instant.js and jQuery.
All documentation is in Spanish.
| Version | Date | Links |
|---|---|---|
| 0.0.1-Alpha | 2008-Apr-27 |
bgiframe
Last changed: 42 weeks 3 days ago
Helps ease the pain when having to deal with IE z-index issues.
| Version | Date | Links |
|---|---|---|
| 2.1.1 | 2007-Jul-22 |
Bigger link
Last changed: 29 weeks 12 hours ago
Makes it really easy to enable specified element/s to behave as a proxy for their first contained link.
Adds additional css classes to provide the means for the specified element to visually reflect focus and hover states of it's contained link/s.
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2007-Oct-23 |
BogoDice
Last changed: 39 weeks 19 min ago
BogoDice provides rudimentary "dice rolling" behaviour. Simply apply the plugin to a button element, then clicking that element will "roll" the defined number of "dice".
| Version | Date | Links |
|---|---|---|
| 2007.08.15 | 2007-Aug-15 |
BogoFolders
Last changed: 41 weeks 6 days ago
BogoFolders provides a "filemanager-like view", with icons in one part of the UI and the content in a separate area. It is intended to be used as a form of navigation menu. Clicking on an entry in the "file view" shows the associated content (if any) in the designated content area, and if the clicked entry has child entries then the "file view" behaves like a conventional file manager and effectively "changes directories" to the new entry. It shows a "flat" view, not a tree view.
| Version | Date | Links |
|---|---|---|
| 2007.07.25 | 2007-Jul-25 |
BogoTabs
Last changed: 41 weeks 6 days ago
BogoTabs is [yet] another tabbed interface plugin for jQuery.
Aside from the conventional tabs it offers the ability to create "hidden tabs". That is, tabs which have no associated activation button, but can be displayed via programmatically activating them. This allows one to create their own custom buttons for tabs, e.g. on the sides or bottom of the tabbed panel.
It is not as complete/nice as "Klaus' Tabs" (i.e. "the" jQuery tabs), but it works and is easy to work with. Unlike Klaus' tabs, it does not "degrade gracefully" when used in a non-JS environment (but in fact no tabs plugin truly degrades gracefully because the tabs themselves are left laying around in completely unintended places when JS is not available).
| Version | Date | Links |
|---|---|---|
| 2007.07.14 | 2007-Jul-17 | |
| 2007.07.25 | 2007-Jul-25 |
Bookmark
Last changed: 1 week 3 days ago
Share your page with any number of bookmarking sites. Features include:
* Full and compact versions.
* Customisable list of sites.
* Easy addition of new/other sites.
* Optional 'Favorites' and 'E-mail' links.
| Version | Date | Links |
|---|---|---|
| 1.0.1 | 2008-May-03 |
Bounce
Last changed: 12 weeks 5 days ago
* Added live demo page (url at bottom of page)
This project allows the user to extend the elements on the web page (created for use with 'textarea' elements, but no reason why it cannot be used elsewhere) with a bounce animation.
| Version | Date | Links |
|---|---|---|
| 1.0.0-updated-example | 2008-Feb-13 | |
| 1.1.0 | 2008-Feb-15 |
Browser
Last changed: 11 weeks 5 days ago
jQuery Browser Plugin lets you extend browser detection capabilities and implements CSS browser selectors in jQuery. jQuery is a lightweight JavaScript library that emphasizes interaction between JavaScript and HTML, allowing you to easily include many components that enrich and benefit the developer's coding experience.
| Version | Date | Links |
|---|---|---|
| 1.0.01-Minified | 2008-Feb-14 | |
| 1.1-Minified | 2008-Feb-21 |
brTip - Brazilian ToolTip
Last changed: 9 weeks 2 days ago
This jQuery plugin was inspired and based on various other plugins of tooltip, but this is better =)
-
Instalation:
- Include jQuery
- Include brTip
- Include CSS of brTip
-
Select the element and apply:
- $('.brTip').brTip();
- $('img').brTip();
-
It's full customizable with options. The options is explained here:
fadeIn: Number or String ('') - Speed of fadeIn
fadeOut: Number or String ('') - Speed of fadeOut
toShow: Number (100) - Delay time (ms) to show
toHide: Number (500) - Delay time (ms) to hide
opacity: Number (0.8) - The brTip opacity, from 0 - 1
top: Number (1) - The top position of brTip is sum of mouse position with this
| Version | Date | Links |
|---|---|---|
| 1.1.0 | 2008-Mar-09 | |
| 0.1.0 | 2008-Feb-18 |
Bubble
Last changed: 33 weeks 1 day ago
This plugin adds bubbling functionality to jQuery. The code is similar to jQuery.fn.trigger's because it's meant to extend it. It also generates it's own event object, that will remain untouched through the bubbling, meaning it's safe to attach attributes to it and grab them with the ancestors while the event bubbles up.
I tried to use jQuery's core functions as much as possible, but most functions I needed were not compatible, and would destroy the custom event object, still the code remains short.
NOTES:
- jQuery.Bubble 1.0 was tested with jQuery 1.3.1 and it's compatible with it's event system.
- jQuery.Bubble 1.2 and further versions will stick to the new system(1.2 's).
| Version | Date | Links |
|---|---|---|
| 1.0 | 2007-Aug-25 | |
| 1.2 | 2007-Sep-25 |
Bubble Puff
Last changed: 6 weeks 5 days ago
A visual information bubble effect, as per the Coda web site.
Information will "puff" upwards, and when the mouse moves away, "puffs" away upwards again.
| Version | Date | Links |
|---|---|---|
| 1 | 2008-Mar-28 |
Calculation Plug-in
Last changed: 9 weeks 1 day ago
The Calculation plug-in is designed to give easy-to-use jQuery functions for commonly used mathematical functions.
This plug-in will work on all types of HTML elements—which means you can use it to calculate values in elements or in elements. You can even mix and match between element types.
Numbers are parsed from the element using parseNumber() method—which uses a regular expression (/\d+(,\d{3})*(\.\d{1,})?/g) to parse out the numeric value. You can change the regular expression that's used to determine what's consider a number by changing the default regular expression.
Syntax Examples
-
$("input[@name^='price']").parseNumber();
This would return an array of potential number for every match in the selector -
$("input[@name^='sum']").sum();
Returns the sum of all the input objects that start with a name attribute of "sum". This breaks the jQuery chain.
| Version | Date | Links |
|---|---|---|
| 0.4-beta | 2008-Mar-10 |
Call function on mouse click or Enter keypress
Last changed: 29 weeks 3 days ago
Typically useful on anchor elements for which following the link should produce javascript functionality instead of the default action (following the URL).
Function binds mouse click and enter keypress to a specified element, and calls the specified function. The default action (e.g. following the href for an anchor) is prevented.
Release 1.2+ supports binding to more than one element, because the callback function is aware of the target of the click / enter keypress.
Usage:
$.clickOrEnter(yourElement,yourFunction);e.g.
$.clickOrEnter('a',popup);This essentially replaces the style of
<a href="javascript:function();">Foo</a>
<a href="foo.html" onclick="function();" onkeypress="function();">Bar</a>which are inaccessible / obtrusive.
| Version | Date | Links |
|---|---|---|
| 1.2 | 2007-Oct-21 | |
| 1.0-First release | 2007-Sep-30 |
Center element plugin
Last changed: 5 weeks 4 days ago
This plugin center any element in page, horizontal and vertical using the css minus margin method.
The portuguese page can be found at: http://www.alexandremagno.net/blog/?p=75
Download: http://jquerydevbrazil.googlecode.com/svn/trunk/jquery.center.js
Require the dimensions plugin
Usage
$("element").center(); //vertical and horizontal
$("element").center({
horizontal: false // only vertical
});| Version | Date | Links |
|---|---|---|
| 1.0 | 2008-Apr-05 |
CFJS (ColdFusionJavaScript for jQuery)
Last changed: 1 year 1 week ago
CFJS for jQuery is a set of ColdFusion functions written in JavaScript and implemented as a jQuery Extension.
| Version | Date | Links |
|---|---|---|
| 1.1.7 | 2007-Jun-26 |
Chat
Last changed: 7 weeks 47 min ago
Ajax chat
You'll need some php/html/css to make the chat work.
The php is an example using the Kohana framework, the only important thing is json_encode() function you must use for every output.
You cannot specify a username with the javascript, the username is retrieved from a database or a session. The only var sent to the PHP is the message itself.
All code is in french, will release it in english if it has some success
| Version | Date | Links |
|---|---|---|
| 2008-Mar-26 |
Checkbox Manipulation
Last changed: 13 weeks 1 hour ago
Toggle, check or uncheck checkboxes. Also make them behave like radio buttons.
Includes:
- toggleCheckboxes
- checkCheckboxes
- unCheckCheckboxes
- radioCheckboxGroup
| Version | Date | Links |
|---|---|---|
| 2.0.1-mit/gpl | 2008-Feb-12 |
Checkbox ShiftClick
Last changed: 11 weeks 2 days ago
ShiftClick allows you to select multiple checkboxes by clicking to set an 'anchor' and shift-clicking to select or deselect all of the checkboxes in between.
| Version | Date | Links |
|---|---|---|
| 1.0 | 2008-Feb-24 |
Checkbox toggler
Simple checkbox toggling by onMouseOver. Proof Of Concept by Snook.ca
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2008-Feb-09 |
CheckboxGroup
Last changed: 3 weeks 3 days ago
Provide "select all" checkbox functionality to a group of checkboxes. The select all checkbox stays in sync with the group so it is appropriately checked when it needs to be.
Example:
$('#checkall').checkgroup({groupName:'group'});Also can have multiple select all boxes to one group - for instance one on top of the group and one on bottom:
$('.checkall').checkgroup({groupSelector:'.groupclass',enabledOnly:true});The HTML would look like this:
<input type='checkbox' class='checkall'>checkall<br>
<input class='groupclass' name='group' type='checkbox'>chk1<br>
<input class='groupclass' name='group' type='checkbox'>chk2<br>
<input class='groupclass' name='group' type='checkbox'>chk3<br>
<input class='groupclass' name='group' type='checkbox'>chk4<br>
<input type='checkbox' class='checkall'>| Version | Date | Links |
|---|---|---|
| 1.1 | 2008-Apr-19 |
Chili
Last changed: 32 weeks 5 days ago
Chili is the jQuery code highlighter
Latest version: 1.9 (2007-09-24)
Chili directly supports highlighting of JavaScript, jQuery, PHP, XHTML, MySQL, Java, C++, C#, CSS, Delphi, and LotusScript. Additionally, it's fairly easy to add a new recipe for any other language by means of regular expressions.
- very fast coloring (3000 lines in less than 1 second)
- trivial setup
- fully customizable
- thoroughly documented
- MIT licensed
See also: Hot Chili
| Version | Date | Links |
|---|---|---|
| 1.9 | 2007-Sep-28 |
Click Menu
Last changed: 16 weeks 5 days ago
A clickable dropdown menu with (theoretically unlimited) submenus made out of an an unordered list. It’s behaviour is like an application menu (click to open, click to close, stays open even after hovering elsewhere).
| Version | Date | Links |
|---|---|---|
| 0.1.6 | 2008-Jan-18 |
Clipboard
Last changed: 23 weeks 2 days ago
Clipboard is a simple jQuery plugin that allows you to copy text in cross-browser fashion, using Internet Explorer's native method, and a Flash helper in other browsers. Tested with jQuery 1.2+, requires Flash 8+ in non-IE browsers.
Version 2.0 released November 24, 2007
| Version | Date | Links |
|---|---|---|
| 2.0.0 | 2007-Dec-02 |
Clipregion
Last changed: 1 year 5 weeks ago
Simple carousel component for only showing a window of content on a slider, similar to a slideshow.
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2007-Apr-05 |
ClockPick, a Time Picker
Last changed: 3 weeks 2 days ago
ClockPick is a timepicker plugin, enabling users to enter a time value into a form field. Using a unique popup div UI, ClockPick gets the job done in about 1/5 the time it takes to enter a time value using a traditional select menu UI.
| Version | Date | Links |
|---|---|---|
| 1.2.3 | 2008-Apr-20 |
clueTip - flexible, enhanced tooltip
Last changed: 1 day 17 hours ago
The clueTip plugin allows you to easily set a link, or any other element, to show a tooltip when the user's mouse hovers over it. If the link includes a title attribute, its text becomes the heading of the clueTip.
The contents of the clueTip can come from a separate file via AJAX, an element on the current page when set to "local," or the title attribute with a designated delimiter.
The clueTip offers smart positioning relative to the linked element or the mouse.
It takes advantage of Brian Cherne's fantastic hoverIntent plugin if it's available (just include it in a tag if you want the clueTip to use it), and comes with many options, all of which are documented in the source comments and on the demo page.
| Version | Date | Links |
|---|---|---|
| 0.9.3 | 2007-Nov-15 | |
| 0.9.2 | 2007-Nov-09 | |
| 0.9.7 | 2008-May-12 |
Codepress Plugin
Last changed: 11 weeks 6 days ago
-
Tested and works on Firefox2, IE7 and IE6 (all in WinXP SP2).
Codepress is not supported on Opera/Safari (or is it?), but form submission still works. -
The same principle can be applied to TinyMCE, FCKEditor and any other rich-text editors.
Any input regarding other rich-text editors is welcome. -
The plugin will intercept known methods and install itself against related plugins
(currently only the jQuery Form Plugin).
Any input regarding integrating this plugin with other jQuery plugins is welcome.
| Version | Date | Links |
|---|---|---|
| 0.1.0 | 2007-Jun-30 |
Collection
Last changed: 15 weeks 21 hours ago
This plugin generates generic collection classes, that work almost exactly as jQuery does.
These collections include all those jQuery functions, that are used to manipulate the collection itself.
The included built-in functions are:
add, andSelf, attr, each, end, eq, extend, filter, get, implement, include, index, init, is, map, not, pushStack, setArray, size and slice.Every collection will have a build() function, that will create a new collection class, that inherits from the caller. $.collection is a collection class by itself. So other collections will inherit from it, or its subclasses.
With this plugin, you can manipulate native data types like String or Array, with your custom methods, without actually modifying their prototype. This is shown in some of the examples below.
If you want additional information and more details about some of the methods.
| Version | Date | Links |
|---|---|---|
| 1.0.3 | 2008-Jan-29 |
Color Animations
Last changed: 35 weeks 2 days ago
Adds the ability to do color animations to jQuery 1.2, and newer.
| Version | Date | Links |
|---|---|---|
| 1.0 | 2007-Sep-09 |
colorBlend! Color fading plugin.
Last changed: 4 weeks 4 days ago
Based on the fade anything plugin, I wanted something a little more robust.
This plugin accepts a javascript array of parameter objects.
current version is always available here: http://www.happinessinmycheeks.com/colorBlend
The current version is 1.5.0
Example:
$("body").colorBlend([{fromColor:"black", toColor:"white", param:"color"}]);
var myColors = [
{param:"color", fromColor:"white", toColor:"black"},
{param:"background-color", random: true, alpha:"10,90"},
{param:"border-left-color", fromColor:"random", toColor:"black"},
{param:"border-right-color", fromColor:"white", toColor:"black"},
{param:"border-top-color", fromColor:"white", toColor:"black"},
{param:"border-bottom-color", fromColor:"white", toColor:"tomato"}
];
$("tr").colorBlend(myColors);| Version | Date | Links |
|---|---|---|
| 1.5.0 | 2008-Apr-12 | |
| 1.4.0 | 2008-Feb-23 |
Column Hover
Last changed: 16 weeks 5 days ago
Highlights columns in a table when the mouse is hovering over them.
| Version | Date | Links |
|---|---|---|
| 0.1.1 | 2008-Jan-18 |
Column Manager
Last changed: 16 weeks 5 days ago
Allows to toggle the visibility of table columns (collapsing and expanding them) and to save the state until the next visit (supporting tables with colspans and rowspans).
| Version | Date | Links |
|---|---|---|
| 0.2.5 | 2008-Jan-18 |