Is it possible to get value of all elements return by find or children method without loop?
There is multiple li that contai hidden field and we want to get all these hidden field val.
i.e. var cats = $(this).next('ul').find('.hdn_id').val();
But its return only single value.