I have designed a custom calendar using html and jQuery. I want to highlight a range of k days (say 2 days) onhover on the start date. Available dates in my calendar are td of class 'available'. This is the code snippet i am using:
$(".monthly-calendar .available").hover(function() {
$(this).toggleClass("selected");
$(this).next(".available").toggleClass("selected");
}
Unfortunately next() only works for the parent row. This creates a problem when i hover on the last column in a row, in which case i see only 1 column highlighted. How do I overload next() to select available TDs across subsequent rows ?
The fiddle is available on http://jsfiddle.net/yL573/1/ Try hovering on 26th to see the problem. Hovering on 26 should also highlight 27 or the next 'available' td. I want to generalize this for selection of k days (k>1, in this case k=2)