I have declared my array like var arrTest=[];
and i am adding some info to it and below is arrTest contents
[Object { minutes=78, start="some address1", end="end address2"}, Object { minutes=54, start="some address3", end="some address4"}, Object { minutes=21, start="some address5", end="some address6"}]
Now what i have to do to select the information with MINIMUM minutes i.e. minutes=21, start="some address5", end="some address6" With Jquery.
Any guidance will be highly appreciated..
thanks