I was wondering how can we write a jquery statement to get the max value of a property of matched elements.
in LINQ we say something like this:
var maxHeight = list.Max(a=> a.Height);
what is the best way to do this in jquery?
as an example let's say we want to select the max numeric value of all :text elements inside a container:
var allInputs = $("#container :text");
// how to get the max of parseInt(item.val())?
of course having a loop over all elements is an option but I'm curious to know if there is a magic to do with jquery.
Regards.
