≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
Highlight Example
Highlight Example
SparkAdv
Posts: 1
Questions: 0
Answers: 0
April 2011
edited April 2011
in
Plug-ins
Just changed a line of code and thought it might be helpful for others.
Changed:
[code]var iCol = $('td').index(this) % 5;[/code]
To:
[code]var iCol = $('td').index(this) % ($(this).siblings('td').length + 1);[/code]
This discussion has been closed.