I have a php generated scale table from 1 to 14. I highlight the min and max values given by the checkbox form on the table with the following jquery code.
This is the jquery code I'm using to highlight two points on the scale table.
Normally I mostly have two values (min and max), but sometimes there happens to be a single value (either min or max) to be highlighted, or no values at all (no highlight). I need to highlight not only the min and max values but all the values between the minimum and maximum values.
For example if (min,max) is (2,8), then 2,3,4,5,6,7, and 8 should be highlighted. How can I get this result? Thanks.
I have this jquery code to highlight the table cell when a number is entered. I need highlighting only when a dot (.) is entered in the cell only. So when a dot (.) is entered in the cell, the highlight will take place, other times not. here is a fiddle example. http://jsfiddle.net/k6p3ecL5/
I'm dealing with this script for a while now, I couldn't fix this. Some cells are highlighted some are not. When you make a selection from the select box, the matching value's supposed to be highlighted. it only works for some cells. Can I get some help, please?
For example, if you select 1, it works. but it doesn't work for 2,3
I have the following example where I can highlight the select values of a specific column. Sometimes I need to use two forms for the same column (hence the same form id), but it doesn't work when I try this. Is there another solution for this?