i got a group of inputs... each one has a number value.
i want to get all their values (found a method here) and then compare
then and highlight the heighest input meaning highlight the input itself
meaning i need to somehow grab its id and know which one i am comparing to...
(i hope i explained it good).
This is what i have for now taken from the link attached:
var values = [];
$("input[name='items[]']").each(function() {
values.push($(this).val());
});