I have inputs and I need to get values and separated by "|" symbol.
My input:

Output what I need:
00:00|00:00|00:00
My code is :
(and it’s not working)
var timesArray = $('table').find('input');
var times = timesArray.val();
$('.alltimes').val(times);
Given that
.valreturns the value of each element (whatever input type it is in your screenshot), then you can use.map: http://jsfiddle.net/RrCYD/.