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.

Releases for Colorize - jQuery Table Plugin


Colorize - jQuery Table Plugin 2.0.0

The new version 2.0.0 introduces 3 new options. The first new option is hover - to set mouseover features. Available values are as follows: 'row','column', 'cross'. The second option is click - to set highlight options on mouse click. Available values are the same as for the hover option: 'row','column', 'cross'. The values are self-explanatory: when a 'row' value is set, a row is highlighted on mouseover or click; when a 'column' value is set, a column is highlighted on mouseover or click. The 'cross' value allows to highlight both rows and columns at the same time. The 'row' value is the default.
The third new option is banRows. It allows you to set an array of row indices that will not be highlighted on mouseover or click when a 'column' value is selected. Usage: banRows:[1,2].

Colorize - jQuery Table Plugin 1.6.0

Version 1.6.0 introduces 3 new options, and a new feature. The new feature lets you highlight rows on mouseover and colorize columns on click. Use columns:'rowHover' option to enable this feature. New options: banDataClick - disables clicking cells, allowing only header row click; ignoreHeaders for striping; nested if you have nested tables.
Also, for better jQuery compatibility, the jQuery bind event is used now to bind the onclick event handler to table cells.

Colorize - jQuery Table Plugin 1.5.1

Fixed a bug that caused a failure to highlight a row or a column on a third click.

Colorize - jQuery Table Plugin 1.5.0

Version 1.5.0 introduced a new option, hoverClass, to indicate a style class to be used for mouseover.
The altColor supports the value of 'none' now.
The columns option has a new value: 'hover' - changes columns background color or style on mouseover, but assigns a new style or background color to rows when they are clicked.
Includes support for multi-level headers by highlighting only the last header row. In the banColumns option, a value of 'last' can be used to ban the last column.

Colorize - jQuery Table Plugin 1.4.0

Introduced a new option, hiliteClass, to enable adding a style class on row/column click (thanks to a tip from Skye Giordano).
The banColumns option, in addition to banning columns from being highlighted, now also suppresses a hover state on columns.

Colorize - jQuery Table Plugin 1.3.1

Removed some debugging code

Colorize - jQuery Table Plugin 1.3.1

Removed some leftover code that caused a JavaScript error.

Colorize - jQuery Table Plugin 1.3.0

This update allows you to use the banColumns option even with the columns parameter set to false.

Colorize - jQuery Table Plugin 1.2.0

This release allows for highlighting columns instead of rows. Alos, there is an option to prevent certain columns from highlighting. Introduces a new option: oneClick - when you click on a new row or column, it cancels the current hightlight, effectively allowing only one row or column to be highlighted at a time.

Colorize - jQuery Table Plugin 1.1.0

Fixes a bug introduced in the original version that in addition to the table that calls the colorize function would highlight all the other tables on a page.

Colorize - jQuery Table Plugin

jQuery.colorize
* Copyright (c) 2008 Eric Karimov - ekarim57(at)gmail(dot)com | http://franca.exofire.net/jq/
* Dual licensed under MIT and GPL.
* Date: 6/24/2008
*
* @projectDescription Table colorize using jQuery.
* http://franca.exofire.net/jq/node/3
*
* @author Eric Karimov
* @version 1.0.0
*
* @param {altColor, bgColor, hoverColor, hiliteColor}
* altColor : alternate row background color
* bgColor : background color (The default background color is white).
* hoverColor : background color when you hover a mouse over a row
* hiliteColor : row highlight background color
* @return {jQuery} Returns the same jQuery object, for chaining.
*
* @example $('table').colorize();
*
* @$('table').colorize({bgColor:'#EAF6CC', hoverColor:'green', hiliteColor:'red'});
*
* All the parameters are optional.

Colorize - jQuery Table Plugin 1.0

* jQuery.colorize
* Copyright (c) 2008 Eric Karimov - ekarim57(at)gmail(dot)com | http://franca.exofire.net/jq/
* Dual licensed under MIT and GPL.
* Date: 6/24/2008
*
* @projectDescription Table colorize using jQuery.
* http://franca.exofire.net/jq/node/3
*
* @author Eric Karimov
* @version 1.0.0
*
* @param {altColor, bgColor, hoverColor, hiliteColor}
* altColor : alternate row background color
* bgColor : background color (The default background color is white).
* hoverColor : background color when you hover a mouse over a row
* hiliteColor : row highlight background color
* @return {jQuery} Returns the same jQuery object, for chaining.
*
* @example $('table').colorize();
*
* @$('table').colorize({bgColor:'#EAF6CC', hoverColor:'green', hiliteColor:'red'});
*
* All the parameters are optional.