One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
# Useful way to manage urls in Apache, this creates a symbolic link in the /var/www folder | |
sudo ln -s /dir/with/files /var/www/yoururl |
/** | |
* Find all cells (td/th) in the column of the current cell. | |
* (excluding rows with cells that span multiple columns.) | |
*/ | |
(function($) { | |
$.fn.column = function() { | |
return $(this) | |
.filter('th, td') |