Highlight Example

Highlight Example

SparkAdvSparkAdv Posts: 1Questions: 0Answers: 0
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.